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

31 lines
723 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
root: {
background: '{surface.0}'
},
light: {
item: {
2024-03-13 06:56:24 +00:00
color: '{surface.500}',
hoverColor: '{surface.700}',
2024-02-20 20:46:42 +00:00
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: {
2024-03-13 06:56:24 +00:00
color: '{surface.400}',
hoverColor: '{surface.0}',
2024-02-20 20:46:42 +00:00
iconColor: '{surface.500}'
},
2024-02-20 20:46:42 +00:00
separator: {
color: '{surface.500}'
}
}
}
};