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

53 lines
1.5 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
background: '{surface.0}',
2024-03-13 11:13:29 +00:00
color: '{surface.700}'
2024-02-20 20:46:42 +00:00
},
node: {
2024-03-13 11:13:29 +00:00
hoverBackground: '{surface.100}',
color: '{surface.700}',
hoverColor: '{surface.800}'
2024-02-20 20:46:42 +00:00
},
nodeIcon: {
color: '{surface.500}',
2024-03-13 11:13:29 +00:00
hoverColor: '{surface.600}'
2024-02-20 20:46:42 +00:00
},
toggle: {
2024-03-13 11:13:29 +00:00
hoverBackground: '{surface.100}',
highlightHoverBackground: '{surface.0}',
2024-02-20 20:46:42 +00:00
color: '{surface.500}',
2024-03-13 11:13:29 +00:00
hoverColor: '{surface.600}'
2024-02-20 20:46:42 +00:00
},
2024-04-25 22:47:09 +00:00
filterIcon: {
color: '{surface.400}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
root: {
background: '{surface.900}',
2024-03-13 11:13:29 +00:00
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
node: {
2024-03-13 11:13:29 +00:00
hoverBackground: '{surface.800}',
color: '{surface.0}',
hoverColor: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
nodeIcon: {
color: '{surface.400}',
2024-03-13 11:13:29 +00:00
hoverColor: '{surface.300}'
2024-02-20 20:46:42 +00:00
},
toggle: {
2024-03-13 11:13:29 +00:00
hoverBackground: '{surface.800}',
highlightHoverBackground: '{surface.900}',
2024-02-20 20:46:42 +00:00
color: '{surface.400}',
2024-03-13 11:13:29 +00:00
hoverColor: '{surface.300}'
2024-02-20 20:46:42 +00:00
},
2024-04-25 22:47:09 +00:00
filterIcon: {
2024-02-20 20:46:42 +00:00
color: '{surface.400}'
}
}
}
};