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

37 lines
1.0 KiB
JavaScript

export default {
colorScheme: {
light: {
connector: {
borderColor: '{surface.200}'
},
item: {
color: '{surface.700}',
activeColor: '{primary.color}'
},
marker: {
background: '{surface.0}',
activeBackground: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.500}',
activeColor: '{primary.color}'
}
},
dark: {
connector: {
borderColor: '{surface.700}'
},
item: {
color: '{surface.0}',
activeColor: '{primary.color}'
},
marker: {
background: '{surface.900}',
activeBackground: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.400}',
activeColor: '{primary.color}'
}
}
}
};