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

31 lines
739 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
root: {
background: '{surface.0}'
},
light: {
item: {
textColor: '{surface.500}',
textColorHover: '{surface.700}',
iconColor: '{surface.400}'
},
separator: {
color: '{surface.400}'
}
},
dark: {
root: {
2024-02-20 20:46:42 +00:00
background: '{surface.900}'
},
2024-02-20 20:46:42 +00:00
item: {
textColor: '{surface.400}',
textColorHover: '{surface.0}',
iconColor: '{surface.500}'
},
2024-02-20 20:46:42 +00:00
separator: {
color: '{surface.500}'
}
}
}
};