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

38 lines
1.0 KiB
JavaScript
Raw Normal View History

export default {
2024-05-13 09:27:09 +00:00
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}'
}
},
transitionDuration: '{transition.duration}'
2024-05-13 09:27:09 +00:00
},
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
indicator: {
background: '{surface.200}',
2024-03-12 11:27:32 +00:00
hoverBackground: '{surface.300}',
activeBackground: '{primary.color}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
indicator: {
background: '{surface.700}',
2024-03-12 11:27:32 +00:00
hoverBackground: '{surface.600}',
activeBackground: '{primary.color}'
}
}
}
};