diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-18 16:42:08 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-18 16:42:08 -0400 |
commit | 105ba1434314e06f6cce39e17aedd1f0d66a92d6 (patch) | |
tree | 3476aa6a446da293812c8a573afb621aaf3508e3 /themes/classic/sass/default/partials | |
parent | 765c15be622e065cd466cb49c3e71034978fd91b (diff) | |
download | my_new_personal_website-105ba1434314e06f6cce39e17aedd1f0d66a92d6.tar.xz my_new_personal_website-105ba1434314e06f6cce39e17aedd1f0d66a92d6.zip |
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.
Diffstat (limited to 'themes/classic/sass/default/partials')
-rw-r--r-- | themes/classic/sass/default/partials/_search.scss | 0 | ||||
-rw-r--r-- | themes/classic/sass/default/partials/_solarized.scss | 16 | ||||
-rw-r--r-- | themes/classic/sass/default/partials/_syntax.scss | 27 |
3 files changed, 16 insertions, 27 deletions
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 --- a/themes/classic/sass/default/partials/_search.scss +++ /dev/null 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; |