primevue-mirror/components/lib/themes/lara/toolbar/index.js

25 lines
582 B
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
root: {
background: '{content.background}',
borderColor: '{content.border.color}',
2024-05-11 14:43:13 +00:00
borderRadius: '{content.border.radius}',
color: '{content.color}',
gap: '0.5rem',
padding: '0.75rem'
},
colorScheme: {
light: {
root: {
background: '{surface.100}',
color: '{content.color}'
}
},
dark: {
root: {
background: '{surface.800}',
color: '{content.color}'
}
}
2024-05-05 20:35:38 +00:00
}
};