Skip to content

Commit

Permalink
Adjust colors
Browse files Browse the repository at this point in the history
  • Loading branch information
mmistakes authored Oct 22, 2019
1 parent 2df2e31 commit 72d1bc4
Showing 1 changed file with 23 additions and 24 deletions.
47 changes: 23 additions & 24 deletions assets/css/skins/dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
@import "so-simple/notices";

/* Colors */
$base-color: white !default;
$text-color: white !default;
$accent-color: rgb(10, 132, 255) !default;
$nav-color: black !default;
$background-color: black !default;
$nav-background-color: $accent-color !default;
$code-background-color: tint($base-color, 95%) !default;
$base-color: #eaeaea !default;
$text-color: #eaeaea !default;
$accent-color: #00adb5 !default;
$nav-color: #aeaeae !default;
$background-color: #252a34 !default;
$nav-background-color: mix(#000, $background-color, 30%) !default;
$code-background-color: mix(#000, $background-color, 15%) !default;
$border-color: tint($base-color, 80%) !default;

$primary-color: white !default;
Expand All @@ -23,22 +23,21 @@ $warning-color: rgb(255, 214, 10) !default;
$danger-color: rgb(255, 69, 58) !default;
$info-color: rgb(100, 210, 255) !default;

/* Monokai by Wimer Hazenberg (http://www.monokai.nl) */
$base00: #272822;
$base01: #383830;
$base02: #49483e;
$base03: #75715e;
$base04: #a59f85;
$base05: #f8f8f2;
$base06: #f5f4f1;
$base07: #f9f8f5;
$base08: #f92672;
$base09: #fd971f;
$base0a: #f4bf75;
$base0b: #a6e22e;
$base0c: #a1efe4;
$base0d: #66d9ef;
$base0e: #ae81ff;
$base0f: #cc6633;
$base00: #263238;
$base01: #2e3c43;
$base02: #314549;
$base03: #546e7a;
$base04: #b2ccd6;
$base05: #eeffff;
$base06: #eeffff;
$base07: #ffffff;
$base08: #f07178;
$base09: #f78c6c;
$base0a: #ffcb6b;
$base0b: #c3e88d;
$base0c: #89ddff;
$base0d: #82aaff;
$base0e: #c792ea;
$base0f: #ff5370;

@import "so-simple/skin";

0 comments on commit 72d1bc4

Please sign in to comment.