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

51 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-05-13 14:15:43 +00:00
export default {
root: {
borderRadius: '16px',
paddingX: '0.75rem',
paddingY: '0.5rem',
gap: '0.5rem'
},
image: {
width: '2rem',
height: '2rem'
},
icon: {
size: '1rem'
},
removeIcon: {
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{form.field.focus.ring.shadow}'
}
},
colorScheme: {
light: {
root: {
2024-05-14 22:53:19 +00:00
background: '{surface.200}',
color: '{surface.900}'
2024-05-13 14:15:43 +00:00
},
icon: {
2024-05-14 22:53:19 +00:00
color: '{surface.900}'
2024-05-13 14:15:43 +00:00
},
removeIcon: {
2024-05-14 22:53:19 +00:00
color: '{surface.900}'
2024-05-13 14:15:43 +00:00
}
},
dark: {
root: {
2024-05-14 22:53:19 +00:00
background: '{surface.700}',
2024-05-13 14:15:43 +00:00
color: '{surface.0}'
},
icon: {
color: '{surface.0}'
},
removeIcon: {
color: '{surfaec.0}'
}
}
}
};