diff options
author | Hakim El Hattab | 2013-03-04 17:54:59 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-03-04 17:54:59 -0500 |
commit | 034016e330153592af5a6b7943d225b728859bc6 (patch) | |
tree | 08c38ce36aa94b3b441b29d1220e4041941aa6c3 /css/theme/source | |
parent | 55e16f4cb97c76d4ec799ade87bec8e11d5703c7 (diff) |
merge two new themes, slight adjustments to said themes
Diffstat (limited to 'css/theme/source')
-rw-r--r-- | css/theme/source/moon.scss (renamed from css/theme/source/solarized_dark.scss) | 23 | ||||
-rw-r--r-- | css/theme/source/solarized.scss (renamed from css/theme/source/solarized_light.scss) | 23 | ||||
-rw-r--r-- | css/theme/source/solarized_colors.scss | 17 |
3 files changed, 38 insertions, 25 deletions
diff --git a/css/theme/source/solarized_dark.scss b/css/theme/source/moon.scss index a54854b..b120935 100644 --- a/css/theme/source/solarized_dark.scss +++ b/css/theme/source/moon.scss @@ -34,17 +34,32 @@ html * { rendering-intent: auto; } -@import "solarized_colors.scss"; +// Solarized colors +$base03: #002b36; +$base02: #073642; +$base01: #586e75; +$base00: #657b83; +$base0: #839496; +$base1: #93a1a1; +$base2: #eee8d5; +$base3: #fdf6e3; +$yellow: #b58900; +$orange: #cb4b16; +$red: #dc322f; +$magenta: #d33682; +$violet: #6c71c4; +$blue: #268bd2; +$cyan: #2aa198; +$green: #859900; // Override theme settings (see ../template/settings.scss) -$mainColor: $base0; -$headingColor: $yellow; +$mainColor: $base1; +$headingColor: $base2; $headingTextShadow: none; $backgroundColor: $base03; $linkColor: $blue; $linkColorHover: lighten( $linkColor, 20% ); $selectionBackgroundColor: $magenta; -$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); diff --git a/css/theme/source/solarized_light.scss b/css/theme/source/solarized.scss index 18f5612..5e283ef 100644 --- a/css/theme/source/solarized_light.scss +++ b/css/theme/source/solarized.scss @@ -35,17 +35,32 @@ html * { rendering-intent: auto; } -@import "solarized_colors.scss"; +// Solarized colors +$base03: #002b36; +$base02: #073642; +$base01: #586e75; +$base00: #657b83; +$base0: #839496; +$base1: #93a1a1; +$base2: #eee8d5; +$base3: #fdf6e3; +$yellow: #b58900; +$orange: #cb4b16; +$red: #dc322f; +$magenta: #d33682; +$violet: #6c71c4; +$blue: #268bd2; +$cyan: #2aa198; +$green: #859900; // Override theme settings (see ../template/settings.scss) $mainColor: $base00; -$headingColor: $green; +$headingColor: $base01; $headingTextShadow: none; $backgroundColor: $base3; -$linkColor: $yellow; +$linkColor: $blue; $linkColorHover: lighten( $linkColor, 20% ); $selectionBackgroundColor: $magenta; -$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); // Background generator // @mixin bodyBackground() { diff --git a/css/theme/source/solarized_colors.scss b/css/theme/source/solarized_colors.scss deleted file mode 100644 index 17b490f..0000000 --- a/css/theme/source/solarized_colors.scss +++ /dev/null @@ -1,17 +0,0 @@ -$base03: #002b36; -$base02: #073642; -$base01: #586e75; -$base00: #657b83; -$base0: #839496; -$base1: #93a1a1; -$base2: #eee8d5; -$base3: #fdf6e3; -$yellow: #b58900; -$orange: #cb4b16; -$red: #dc322f; -$magenta: #d33682; -$violet: #6c71c4; -$blue: #268bd2; -$cyan: #2aa198; -$green: #859900; - |