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

43 lines
1.2 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
background: '{surface.0}',
borderColor: '{surface.200}',
2024-03-13 06:56:24 +00:00
color: '{surface.700}'
2024-02-20 20:46:42 +00:00
},
item: {
2024-03-13 06:56:24 +00:00
focusBackground: '{surface.100}',
color: '{surface.700}',
2024-04-09 13:21:05 +00:00
focusColor: '{surface.800}',
2024-02-20 20:46:42 +00:00
icon: {
color: '{surface.400}',
2024-04-09 13:21:05 +00:00
focusColor: '{surface.500}'
}
},
2024-02-20 20:46:42 +00:00
separator: {
borderColor: '{surface.200}'
}
},
dark: {
root: {
background: '{surface.900}',
borderColor: '{surface.700}',
2024-03-13 06:56:24 +00:00
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
item: {
2024-03-13 06:56:24 +00:00
focusBackground: '{surface.800}',
color: '{surface.0}',
2024-04-09 13:21:05 +00:00
focusColor: '{surface.0}',
2024-02-20 20:46:42 +00:00
icon: {
color: '{surface.500}',
2024-04-09 13:21:05 +00:00
focusColor: '{surface.400}'
}
2024-02-20 20:46:42 +00:00
},
separator: {
borderColor: '{surface.700}'
}
}
}
};