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

39 lines
1.1 KiB
JavaScript

export default {
colorScheme: {
light: {
node: {
background: '{surface.0}',
hoverBackground: '{surface.100}',
borderColor: '{surface.200}',
color: '{surface.700}',
hoverColor: '{surface.800}'
},
toggleIcon: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.500}'
},
connector: {
color: '{surface.200}'
}
},
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}'
}
}
}
};