Files
web/packages/design-system/lib/components/IconChip/iconChip.module.css
Matilda Haneling f502621576 Merged in fix/book-425-update-tokens (pull request #3063)
fix(BOOK-425): updated to the new color tokens (again)

* fix(BOOK-425): updated to the new color tokens (again)


Approved-by: Erik Tiekstra
2025-11-06 09:54:57 +00:00

23 lines
473 B
CSS

.chip {
display: flex;
align-items: center;
gap: var(--Spacing-x1);
padding: var(--Spacing-x1) var(--Spacing-x-one-and-half);
border-radius: var(--Corner-radius-sm);
}
.blue {
background-color: var(--Scandic-Blue-00);
color: var(--UI-Semantic-Information);
}
.green {
background-color: var(--Surface-Feedback-Succes-light);
color: var(--Surface-Feedback-Succes);
}
.red {
background-color: var(--Scandic-Red-00);
color: var(--UI-Semantic-Error);
}