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

34 lines
929 B
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
separator: {
background: '{content.border.color}'
},
2024-05-11 08:55:03 +00:00
itemLink: {
borderRadius: '{content.border.radius}',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
},
gap: '0.5rem'
},
2024-05-05 20:35:38 +00:00
itemLabel: {
2024-05-11 08:55:03 +00:00
color: '{text.muted.color}',
activeColor: '{primary.color}',
fontWeight: '500'
2024-05-05 20:35:38 +00:00
},
itemNumber: {
background: '{content.background}',
2024-05-11 08:55:03 +00:00
activeBackground: '{primary.color}',
2024-05-05 20:35:38 +00:00
borderColor: '{content.border.color}',
color: '{text.muted.color}',
2024-05-11 08:55:03 +00:00
activeColor: '{primary.inverse.color}',
size: '2.25rem',
fontSize: '1.125rem',
fontWeight: '500',
borderRadius: '50%',
shadow: 'none'
2024-05-05 20:35:38 +00:00
}
};