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

39 lines
1.1 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
node: {
background: '{surface.0}',
2024-03-13 11:13:29 +00:00
hoverBackground: '{surface.100}',
2024-02-20 20:46:42 +00:00
borderColor: '{surface.200}',
2024-03-13 11:13:29 +00:00
color: '{surface.700}',
hoverColor: '{surface.800}'
},
2024-02-20 20:46:42 +00:00
toggleIcon: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.500}'
},
connector: {
color: '{surface.200}'
}
},
2024-03-13 11:13:29 +00:00
dark: {
node: {
background: '{surface.900}',
hoverBackground: '{surface.800}',
borderColor: '{surface.700}',
color: '{surface.0}',
hoverColor: '{surface.0}'
},
toggleIcon: {
background: '{surface.800}',
borderColor: '{surface.700}',
color: '{surface.400}'
},
connector: {
color: '{surface.700}'
}
}
}
};