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

51 lines
1.1 KiB
JavaScript
Raw Normal View History

export default {
2024-05-09 18:49:49 +00:00
root: {
borderRadius: '16px',
paddingX: '0.75rem',
paddingY: '0.5rem',
gap: '0.5rem'
},
image: {
width: '2rem',
height: '2rem'
},
2024-05-09 18:55:56 +00:00
icon: {
size: '1rem'
},
2024-05-09 18:49:49 +00:00
removeIcon: {
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{form.field.focus.ring.shadow}'
}
},
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
background: '{surface.100}',
2024-03-12 10:07:36 +00:00
color: '{surface.800}'
2024-05-09 18:55:56 +00:00
},
icon: {
color: '{surface.800}'
},
removeIcon: {
color: '{surface.800}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
root: {
background: '{surface.700}',
2024-03-12 10:07:36 +00:00
color: '{surface.0}'
2024-05-09 18:55:56 +00:00
},
icon: {
color: '{surface.0}'
},
removeIcon: {
color: '{surfaec.0}'
}
}
}
};