add favorite icon color

This commit is contained in:
jeffvli
2025-11-21 20:21:03 -08:00
parent c76ac7b249
commit 75bf33fbba
2 changed files with 9 additions and 0 deletions
@@ -62,6 +62,10 @@
color: var(--theme-colors-state-warn); color: var(--theme-colors-state-warn);
} }
.color-favorite {
color: rgb(255 49 49);
}
.fill { .fill {
fill: transparent; fill: transparent;
} }
@@ -102,6 +106,10 @@
fill: var(--theme-colors-state-warn); fill: var(--theme-colors-state-warn);
} }
.fill-favorite {
fill: rgb(255 49 49);
}
.spin { .spin {
animation: spin 1s linear infinite; animation: spin 1s linear infinite;
} }
+1
View File
@@ -247,6 +247,7 @@ type IconColor =
| 'contrast' | 'contrast'
| 'default' | 'default'
| 'error' | 'error'
| 'favorite'
| 'info' | 'info'
| 'inherit' | 'inherit'
| 'muted' | 'muted'