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

26 lines
575 B
JavaScript
Raw Normal View History

2024-05-13 14:15:43 +00:00
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: {
2024-05-14 21:42:42 +00:00
background: '{surface.200}'
2024-05-13 14:15:43 +00:00
}
},
dark: {
bar: {
2024-05-14 21:42:42 +00:00
background: '{surface.700}'
2024-05-13 14:15:43 +00:00
}
}
}
};