primevue-mirror/components/lib/themes/nora/tooltip/index.js

24 lines
541 B
JavaScript
Raw Normal View History

2024-05-13 14:15:43 +00:00
export default {
root: {
maxWidth: '12.5rem',
gutter: '0.25rem',
shadow: '{overlay.popover.shadow}',
padding: '0.5rem 0.75rem',
borderRadius: '{overlay.popover.border.radius}'
},
colorScheme: {
light: {
root: {
2024-05-14 23:20:49 +00:00
background: '{surface.900}',
2024-05-13 14:15:43 +00:00
color: '{surface.0}'
}
},
dark: {
root: {
2024-05-14 23:20:49 +00:00
background: '{surface.0}',
color: '{surface.900}'
2024-05-13 14:15:43 +00:00
}
}
}
};