Browse Source
2. Separated Solarized color pack into a partial. 3. Changed up sass partial load order to support simple color and style overrides.unreleased_contents
Brandon Mathis
14 years ago
10 changed files with 95 additions and 76 deletions
@ -1,3 +0,0 @@ |
|||
guard 'livereload', :api_version => '1.6' do |
|||
watch(/public\/\S[css|js|html|png|jpg|gif]/) |
|||
end |
@ -1,12 +0,0 @@ |
|||
//@import "partials/shared"; |
|||
//@import "partials/search"; |
|||
|
|||
/* layout partials */ |
|||
@import "partials/header"; |
|||
@import "partials/navigation"; |
|||
@import "partials/page"; |
|||
@import "partials/sidebar"; |
|||
@import "partials/blog"; |
|||
@import "partials/footer"; |
|||
|
|||
@import "partials/syntax"; |
@ -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; |
|||
*/ |
@ -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 |
@ -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; |
Loading…
Reference in new issue