primevue-mirror/components/lib/themes/aura/tree/index.js

51 lines
1.5 KiB
JavaScript
Raw Normal View History

export default {
2024-05-04 21:57:50 +00:00
root: {
background: '{content.background}',
2024-05-12 21:42:33 +00:00
color: '{content.color}',
padding: '1rem',
gap: '2px',
indent: '1rem'
2024-05-04 21:57:50 +00:00
},
node: {
2024-05-12 21:42:33 +00:00
padding: '0.25rem 0.5rem',
borderRadius: '{content.border.radius}',
2024-05-04 21:57:50 +00:00
hoverBackground: '{content.hover.background}',
2024-05-12 21:42:33 +00:00
selectedBackground: '{highlight.background}',
2024-05-04 21:57:50 +00:00
color: '{text.color}',
2024-05-12 21:42:33 +00:00
hoverColor: '{text.hover.color}',
selectedColor: '{highlight.color}',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '-1px',
shadow: '{focus.ring.shadow}'
},
gap: '0.25rem'
2024-05-04 21:57:50 +00:00
},
nodeIcon: {
color: '{text.muted.color}',
2024-05-12 21:42:33 +00:00
hoverColor: '{text.hover.muted.color}',
selectedColor: '{highlight.color}'
2024-05-04 21:57:50 +00:00
},
nodeToggleButton: {
2024-05-12 21:42:33 +00:00
borderRadius: '50%',
size: '1.75rem',
2024-05-04 21:57:50 +00:00
hoverBackground: '{content.hover.background}',
2024-05-12 21:42:33 +00:00
selectedHoverBackground: '{content.background}',
2024-05-04 21:57:50 +00:00
color: '{text.muted.color}',
2024-05-12 21:42:33 +00:00
hoverColor: '{text.hover.muted.color}',
selectedHoverColor: '{primary.color}',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
},
loadingIcon: {
size: '2rem'
}
};