primevue-mirror/components/lib/themes/primeone/presets/aura/steps/index.js

37 lines
1.0 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
connector: {
borderColor: '{surface.200}'
},
2024-02-20 20:46:42 +00:00
item: {
2024-03-13 06:56:24 +00:00
color: '{surface.700}',
activeColor: '{primary.color}'
2024-02-20 20:46:42 +00:00
},
marker: {
background: '{surface.0}',
2024-03-13 06:56:24 +00:00
activeBackground: '{surface.0}',
2024-02-20 20:46:42 +00:00
borderColor: '{surface.200}',
2024-03-13 06:56:24 +00:00
color: '{surface.500}',
activeColor: '{primary.color}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
connector: {
borderColor: '{surface.700}'
},
item: {
2024-03-13 06:56:24 +00:00
color: '{surface.0}',
activeColor: '{primary.color}'
2024-02-20 20:46:42 +00:00
},
marker: {
background: '{surface.900}',
2024-03-13 06:56:24 +00:00
activeBackground: '{surface.900}',
2024-02-20 20:46:42 +00:00
borderColor: '{surface.700}',
2024-03-13 06:56:24 +00:00
color: '{surface.400}',
activeColor: '{primary.color}'
}
}
}
};