Skip to content

Commit

Permalink
support for custom colors
Browse files Browse the repository at this point in the history
  • Loading branch information
robertwijas committed Dec 29, 2012
1 parent 9a9de06 commit 0e9641a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
14 changes: 7 additions & 7 deletions sass/base/_color.scss
@@ -1,7 +1,7 @@
$color-background: #eee; $color-background: #eee !default;
$color-main: #258fb8; $color-main: #258fb8 !default;
$color-gray01: #666; $color-gray01: #666 !default;
$color-gray02: #999; $color-gray02: #999 !default;
$color-gray03: #ccc; $color-gray03: #ccc !default;
$color-gray04: #ddd; $color-gray04: #ddd !default;
$color-gray05: #fff; $color-gray05: #fff !default;
7 changes: 7 additions & 0 deletions sass/custom/_color.scss
@@ -0,0 +1,7 @@
// $color-background: #eee;
// $color-main: #258fb8;
// $color-gray01: #666;
// $color-gray02: #999;
// $color-gray03: #ccc;
// $color-gray04: #ddd;
// $color-gray05: #fff;
2 changes: 2 additions & 0 deletions sass/screen.scss
@@ -1,5 +1,7 @@
@import "compass"; @import "compass";


@import "custom/color";

@import "base"; @import "base";
@import "parts"; @import "parts";
@import "plugins"; @import "plugins";

0 comments on commit 0e9641a

Please sign in to comment.