26 lines
575 B
JavaScript
26 lines
575 B
JavaScript
|
export default {
|
||
|
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}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|