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

37 lines
989 B
JavaScript
Raw Normal View History

2024-05-13 14:15:43 +00:00
export default {
root: {
indicatorList: {
padding: '1rem',
gap: '0.5rem'
},
indicator: {
width: '2rem',
height: '0.5rem',
borderRadius: '{content.border.radius}',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
}
},
colorScheme: {
light: {
indicator: {
2024-05-14 23:20:49 +00:00
background: '{surface.300}',
hoverBackground: '{surface.400}',
2024-05-13 14:15:43 +00:00
activeBackground: '{primary.color}'
}
},
dark: {
indicator: {
2024-05-14 23:20:49 +00:00
background: '{surface.600}',
hoverBackground: '{surface.500}',
2024-05-13 14:15:43 +00:00
activeBackground: '{primary.color}'
}
}
}
};