Skip to content

Commit

Permalink
fix(tokens): update tokens for product icon warning sentiment (#2752)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthprost authored Jul 21, 2023
1 parent aa42973 commit f4f9dfc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions .changeset/wet-shoes-sneeze.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@ultraviolet/themes': patch
'@ultraviolet/icons': patch
---

Update ProductIcon tokens color for warning sentiment
Original file line number Diff line number Diff line change
Expand Up @@ -5722,28 +5722,28 @@ exports[`ProductIcon should work with all variants should work with primary 1`]

exports[`ProductIcon should work with all variants should work with warning 1`] = `
<DocumentFragment>
.cache-u6ei6h-StyledIcon {
.cache-1n19dhy-StyledIcon {
width: 32px;
height: 32px;
}
.cache-u6ei6h-StyledIcon .fill,
.cache-u6ei6h-StyledIcon .fill>* {
fill: #ffeccc;
.cache-1n19dhy-StyledIcon .fill,
.cache-1n19dhy-StyledIcon .fill>* {
fill: #7c5400;
}
.cache-u6ei6h-StyledIcon .fillStrong,
.cache-u6ei6h-StyledIcon .fillStrong>* {
fill: #ffeccc;
.cache-1n19dhy-StyledIcon .fillStrong,
.cache-1n19dhy-StyledIcon .fillStrong>* {
fill: #7c5400;
}
.cache-u6ei6h-StyledIcon .fillWeak,
.cache-u6ei6h-StyledIcon .fillWeak>* {
.cache-1n19dhy-StyledIcon .fillWeak,
.cache-1n19dhy-StyledIcon .fillWeak>* {
fill: #fbc600;
}
<svg
class="cache-u6ei6h-StyledIcon euby9wl0"
class="cache-1n19dhy-StyledIcon euby9wl0"
viewBox="0 0 64 64"
>
<g
Expand Down
4 changes: 2 additions & 2 deletions packages/themes/src/themes/console/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ export const lightTheme = {
fillWeakDisabled: '#f3f3f4',
},
warning: {
fill: '#ffeccc',
fill: '#7c5400',
fillDisabled: '#d9dadd',
fillStrong: '#ffeccc',
fillStrong: '#7c5400',
fillStrongDisabled: '#d9dadd',
fillWeak: '#fbc600',
fillWeakDisabled: '#f3f3f4',
Expand Down

0 comments on commit f4f9dfc

Please sign in to comment.