Update loading spinner to use CSS variables depending on theme

This commit is contained in:
Oliver 2025-11-21 19:49:02 -07:00
parent 44977c95cc
commit 361a2004d8
3 changed files with 15 additions and 2 deletions

View file

@ -1,6 +1,9 @@
.theme-dark {
--prosemirror-background: var(--color-cool-5);
--spinner-outer-colour: white;
--spinner-inner-colour: #FF3D00;
/* Chip Variables */
--chip-color: #fff7ed;
--chip-background: #2b3642;

View file

@ -1,3 +1,13 @@
.theme-light {
--prosemirror-background: white;
--spinner-outer-colour: black;
--spinner-inner-colour: #FF3D00;
/* Chip Variables */
--chip-color: #18181b;
--chip-background: #fafafa;
--chip-value-color: #18181b;
--chip-value-background: #d4d4d8aa;
--chip-border-color: var(--chip-value-background);
}