Skip to content

Commit 66af0cd

Browse files
committed
feat: always use red for negative colors
ref #54
1 parent c6fb84f commit 66af0cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/theme.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
--element-shadow-alpha: 0.1;
1616
--element-shadow: 0px 0px 0px 0.5px rgba(0, 0, 0, 0.15),
1717
0px 1px 1px rgba(0, 0, 0, 0.2);
18+
--negative-color: #e64848;
1819
}
1920
[data-theme^='dark'] {
2021
--dim-colors: 255, 255, 255;
@@ -32,6 +33,7 @@
3233
--input-outline-dim: rgb(110, 110, 110);
3334
--element-shadow-alpha: 0.4;
3435
--element-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
36+
--negative-color: #e00d0d;
3537
}
3638
:root {
3739
--row-height: 1.8rem;
@@ -40,7 +42,6 @@
4042
--font: 'Roboto';
4143
--font-mono: 'Roboto Mono';
4244
--button-color-active: white;
43-
--negative-color: rgb(var(--accent-colors));
4445
}
4546
#root {
4647
--input-border-color: rgba(var(--dim-colors), 0.15);

0 commit comments

Comments
 (0)