28 lines
637 B
JavaScript
28 lines
637 B
JavaScript
export default {
|
|
root: {
|
|
bar: {
|
|
size: '9px',
|
|
borderRadius: '{border.radius.sm}',
|
|
focusRing: {
|
|
width: '{focus.ring.width}',
|
|
style: '{focus.ring.style}',
|
|
color: '{focus.ring.color}',
|
|
offset: '{focus.ring.offset}',
|
|
shadow: '{focus.ring.shadow}'
|
|
}
|
|
}
|
|
},
|
|
colorScheme: {
|
|
light: {
|
|
bar: {
|
|
background: '{surface.100}'
|
|
}
|
|
},
|
|
dark: {
|
|
bar: {
|
|
background: '{surface.800}'
|
|
}
|
|
}
|
|
}
|
|
};
|