Skip to content

Commit

Permalink
feat: always use red for negative colors
Browse files Browse the repository at this point in the history
ref #54
  • Loading branch information
Xiphe committed Jan 8, 2021
1 parent c6fb84f commit 66af0cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
--element-shadow-alpha: 0.1;
--element-shadow: 0px 0px 0px 0.5px rgba(0, 0, 0, 0.15),
0px 1px 1px rgba(0, 0, 0, 0.2);
--negative-color: #e64848;
}
[data-theme^='dark'] {
--dim-colors: 255, 255, 255;
Expand All @@ -32,6 +33,7 @@
--input-outline-dim: rgb(110, 110, 110);
--element-shadow-alpha: 0.4;
--element-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
--negative-color: #e00d0d;
}
:root {
--row-height: 1.8rem;
Expand All @@ -40,7 +42,6 @@
--font: 'Roboto';
--font-mono: 'Roboto Mono';
--button-color-active: white;
--negative-color: rgb(var(--accent-colors));
}
#root {
--input-border-color: rgba(var(--dim-colors), 0.15);
Expand Down

0 comments on commit 66af0cd

Please sign in to comment.