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/custom | |
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/custom')
-rw-r--r-- | themes/classic/sass/default/custom/_colors.scss | 22 | ||||
-rw-r--r-- | themes/classic/sass/default/custom/_styles.scss | 2 |
2 files changed, 24 insertions, 0 deletions
diff --git a/themes/classic/sass/default/custom/_colors.scss b/themes/classic/sass/default/custom/_colors.scss new file mode 100644 index 00000000..b6e541cc --- /dev/null +++ b/themes/classic/sass/default/custom/_colors.scss @@ -0,0 +1,22 @@ +// Here you can easily change your sites's color scheme. +// To give it a try, uncomment some of the lines below rebuild your blog, and see how it works. + +//$header-bg: #263347; +//$subtitle-color: lighten($header-bg, 58); +//$nav-bg: desaturate(lighten(#8fc17a, 18), 5); +//$sidebar-bg: desaturate(#eceff5, 8); +//$sidebar-link-color: saturate(#526f9a, 10); +//$sidebar-link-color-hover: darken(#7ab662, 9); + + +//To use the light Solarized highlighting theme uncomment this block +/* +$base03: $base3; +$base02: $base2; +$base01: $base1; +$base00: $base0; +$base0: $base00; +$base1: $base01; +$base2: $base02; +$base3: $base03; +*/ diff --git a/themes/classic/sass/default/custom/_styles.scss b/themes/classic/sass/default/custom/_styles.scss new file mode 100644 index 00000000..91ffcccf --- /dev/null +++ b/themes/classic/sass/default/custom/_styles.scss @@ -0,0 +1,2 @@ +// This File is imported last, and will override other styles in the cascade +// Add styles here to make changes without digging in too much |