Skip to content

Commit

Permalink
feat: use 2014 Material Design color palettes
Browse files Browse the repository at this point in the history
  • Loading branch information
foray1010 committed Nov 18, 2020
1 parent 9ad4284 commit 296789d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 22 deletions.
37 changes: 16 additions & 21 deletions src/core/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,31 @@
--golden-gap: 2px;
--golden-gap-2x: calc(var(--golden-gap) * 2);
--golden-gap-4x: calc(var(--golden-gap) * 4);
--highlight-level1: #e9ecef;
--highlight-level2: #dee2e6;
--highlight-level3: #ced4da;
--highlight-level4: #adb5bd;
--highlight-level5: #868e96;
--highlight-level1: #eee;
--highlight-level2: #e0e0e0;
--highlight-level3: #bdbdbd;
--highlight-level4: #9e9e9e;
--highlight-level5: #757575;
--main-background-color: #fff;
--main-color1: #339af0;
--main-color2: #ff922b;
--main-color3: #20c997;
--main-color4: #f03e3e;
--main-color1: #42a5f5;
--main-color2: #ff9800;
--main-color3: #26a69a;
--main-color4: #f44336;
--main-color5: #8d6e63;
--main-font-color: #212529;
--main-font-color: #212121;

background-color: var(--main-background-color);
color: var(--main-font-color);
}

@media (prefers-color-scheme: dark) {
:root {
--highlight-level1: #343a40;
--highlight-level2: #495057;
--highlight-level3: #868e96;
--highlight-level4: #adb5bd;
--highlight-level5: #ced4da;
--main-background-color: #212529;
--main-color1: #4dabf7;
--main-color2: #ffa94d;
--main-color3: #38d9a9;
--main-color4: #fa5252;
--main-color5: #a1887f;
--highlight-level1: #424242;
--highlight-level2: #616161;
--highlight-level3: #757575;
--highlight-level4: #9e9e9e;
--highlight-level5: #bdbdbd;
--main-background-color: #212121;
--main-font-color: #fff;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/popup/images/folder.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 296789d

Please sign in to comment.