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

28 lines
637 B
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
2024-05-11 13:25:48 +00:00
root: {
bar: {
size: '9px',
borderRadius: '{border.radius.xs}',
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: {
bar: {
2024-05-11 13:25:48 +00:00
background: '{surface.200}'
2024-05-05 20:35:38 +00:00
}
},
dark: {
bar: {
2024-05-11 13:25:48 +00:00
background: '{surface.700}'
2024-05-05 20:35:38 +00:00
}
}
}
};