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

20 lines
461 B
JavaScript
Raw Normal View History

2024-05-13 14:15:43 +00:00
export default {
root: {
borderRadius: '{content.border.radius}'
},
colorScheme: {
light: {
root: {
2024-05-14 23:20:49 +00:00
background: '{surface.300}',
2024-05-13 14:15:43 +00:00
animationBackground: 'rgba(255,255,255,0.4)'
}
},
dark: {
root: {
2024-05-14 23:20:49 +00:00
background: 'rgba(255, 255, 255, 0.1)',
2024-05-13 14:15:43 +00:00
animationBackground: 'rgba(255, 255, 255, 0.04)'
}
}
}
};