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

47 lines
1.4 KiB
JavaScript
Raw Normal View History

2024-02-23 07:36:24 +00:00
export default {
colorScheme: {
light: {
connector: {
background: '{surface.200}',
activeBackground: '{primary.color}'
2024-02-23 07:36:24 +00:00
},
title: {
color: '{surface.700}',
activeColor: '{primary.color}'
2024-02-23 07:36:24 +00:00
},
marker: {
background: '{surface.0}',
activeBackground: '{surface.0}',
2024-02-23 07:36:24 +00:00
borderColor: '{surface.200}',
color: '{surface.500}',
activeColor: '{primary.color}'
2024-02-23 07:36:24 +00:00
},
content: {
background: '{surface.0}',
color: '{surface.700}'
2024-02-23 07:36:24 +00:00
}
},
dark: {
connector: {
background: '{surface.700}',
activeBackground: '{primary.color}'
2024-02-23 07:36:24 +00:00
},
title: {
color: '{surface.0}',
activeColor: '{primary.color}'
2024-02-23 07:36:24 +00:00
},
marker: {
background: '{surface.900}',
activeBackground: '{surface.900}',
2024-02-23 07:36:24 +00:00
borderColor: '{surface.700}',
color: '{surface.400}',
activeColor: '{primary.color}'
2024-02-23 07:36:24 +00:00
},
content: {
background: '{surface.900}',
color: '{surface.0}'
2024-02-23 07:36:24 +00:00
}
}
}
};