37 lines
989 B
JavaScript
37 lines
989 B
JavaScript
|
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: {
|
||
|
background: '{surface.200}',
|
||
|
hoverBackground: '{surface.300}',
|
||
|
activeBackground: '{primary.color}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
indicator: {
|
||
|
background: '{surface.700}',
|
||
|
hoverBackground: '{surface.600}',
|
||
|
activeBackground: '{primary.color}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|