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

37 lines
966 B
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
2024-05-13 09:27:09 +00:00
root: {
indicatorList: {
padding: '1rem',
gap: '0.5rem'
},
indicator: {
width: '1rem',
height: '1rem',
borderRadius: '50',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
}
},
2024-05-05 20:35:38 +00:00
colorScheme: {
light: {
indicator: {
background: '{surface.200}',
hoverBackground: '{surface.300}',
activeBackground: '{primary.color}'
}
},
dark: {
indicator: {
background: '{surface.700}',
hoverBackground: '{surface.600}',
activeBackground: '{primary.color}'
}
}
}
};