From 105ba1434314e06f6cce39e17aedd1f0d66a92d6 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Sat, 18 Jun 2011 16:42:08 -0400 Subject: 1. Removed unnecessary guardfile 2. Separated Solarized color pack into a partial. 3. Changed up sass partial load order to support simple color and style overrides. --- themes/classic/sass/default/partials/_search.scss | 0 .../classic/sass/default/partials/_solarized.scss | 16 +++++++++++++ themes/classic/sass/default/partials/_syntax.scss | 27 ---------------------- 3 files changed, 16 insertions(+), 27 deletions(-) delete mode 100644 themes/classic/sass/default/partials/_search.scss create mode 100644 themes/classic/sass/default/partials/_solarized.scss (limited to 'themes/classic/sass/default/partials') diff --git a/themes/classic/sass/default/partials/_search.scss b/themes/classic/sass/default/partials/_search.scss deleted file mode 100644 index e69de29b..00000000 diff --git a/themes/classic/sass/default/partials/_solarized.scss b/themes/classic/sass/default/partials/_solarized.scss new file mode 100644 index 00000000..4952120d --- /dev/null +++ b/themes/classic/sass/default/partials/_solarized.scss @@ -0,0 +1,16 @@ +$base03: #002b36; //darkest blue +$base02: #073642; //dark blue +$base01: #586e75; //darkest gray +$base00: #657b83; //dark gray +$base0: #839496; //medium gray +$base1: #93a1a1; //medium light gray +$base2: #eee8d5; //cream +$base3: #fdf6e3; //white +$yellow: #b58900; +$orange: #cb4b16; +$red: #dc322f; +$magenta: #d33682; +$violet: #6c71c4; +$blue: #268bd2; +$cyan: #2aa198; +$green: #859900; diff --git a/themes/classic/sass/default/partials/_syntax.scss b/themes/classic/sass/default/partials/_syntax.scss index b249559f..22f5eb06 100644 --- a/themes/classic/sass/default/partials/_syntax.scss +++ b/themes/classic/sass/default/partials/_syntax.scss @@ -1,30 +1,3 @@ -$base03: #002b36; //darkest blue -$base02: #073642; //dark blue -$base01: #586e75; //darkest gray -$base00: #657b83; //dark gray -$base0: #839496; //medium gray -$base1: #93a1a1; //medium light gray -$base2: #eee8d5; //cream -$base3: #fdf6e3; //white -$yellow: #b58900; -$orange: #cb4b16; -$red: #dc322f; -$magenta: #d33682; -$violet: #6c71c4; -$blue: #268bd2; -$cyan: #2aa198; -$green: #859900; - -// If you prefer light colors, uncomment the following block to change themes -//$base03: $base3; -//$base02: $base2; -//$base01: $base1; -//$base00: $base0; -//$base0: $base00; -//$base1: $base01; -//$base2: $base02; -//$base3: $base03; - .highlight, html .gist .gist-file .gist-syntax .gist-highlight { .line-numbers { text-align: right; -- cgit v1.2.1