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

57 lines
1.7 KiB
JavaScript
Raw Normal View History

2024-02-21 11:42:43 +00:00
export default {
colorScheme: {
light: {
toolbar: {
background: '{surface.0}',
borderColor: '{surface.200}'
},
toolbarItem: {
2024-03-13 18:50:24 +00:00
color: '{surface.500}',
hoverColor: '{surface.700}',
activeColor: '{primary.color}'
2024-02-21 11:42:43 +00:00
},
overlay: {
background: '{surface.0}',
borderColor: '{surface.200}',
2024-03-13 18:50:24 +00:00
color: '{surface.700}'
2024-02-21 11:42:43 +00:00
},
overlayItem: {
2024-03-13 18:50:24 +00:00
hoverBackground: '{surface.100}',
color: '{surface.700}',
hoverColor: '{surface.800}'
2024-02-21 11:42:43 +00:00
},
content: {
background: '{surface.0}',
borderColor: '{surface.200}',
2024-03-13 18:50:24 +00:00
color: '{surface.700}'
2024-02-21 11:42:43 +00:00
}
},
dark: {
toolbar: {
background: '{surface.900}',
borderColor: '{surface.700}'
},
toolbarItem: {
2024-03-13 18:50:24 +00:00
color: '{surface.400}',
hoverColor: '{surface.0}',
activeColor: '{primary.color}'
2024-02-21 11:42:43 +00:00
},
overlay: {
background: '{surface.900}',
borderColor: '{surface.700}',
2024-03-13 18:50:24 +00:00
color: '{surface.0}'
2024-02-21 11:42:43 +00:00
},
overlayItem: {
2024-03-13 18:50:24 +00:00
hoverBackground: '{surface.800}',
color: '{surface.400}',
hoverColor: '{surface.0}'
2024-02-21 11:42:43 +00:00
},
content: {
background: '{surface.900}',
borderColor: '{surface.700}',
2024-03-13 18:50:24 +00:00
color: '{surface.0}'
2024-02-21 11:42:43 +00:00
}
}
}
};