summaryrefslogtreecommitdiffstats
path: root/sass/base
diff options
context:
space:
mode:
Diffstat (limited to 'sass/base')
-rw-r--r--sass/base/_color.scss9
-rw-r--r--sass/base/_layout.scss4
2 files changed, 7 insertions, 6 deletions
diff --git a/sass/base/_color.scss b/sass/base/_color.scss
index 51efe3d..7dbee46 100644
--- a/sass/base/_color.scss
+++ b/sass/base/_color.scss
@@ -1,6 +1,7 @@
$background: #eee;
$main: #258fb8;
-$border: #ddd;
-$light-shadow: #fff;
-$font-main: #666;
-$font-meta: #999; \ No newline at end of file
+$gray01: #666;
+$gray02: #999;
+$gray03: #ccc;
+$gray04: #ddd;
+$gray05: #fff; \ No newline at end of file
diff --git a/sass/base/_layout.scss b/sass/base/_layout.scss
index 71cb9f1..da9ad8a 100644
--- a/sass/base/_layout.scss
+++ b/sass/base/_layout.scss
@@ -11,7 +11,7 @@ $max-width: 1000px;
-o-user-select: $select;
user-select: $select;
}
-@mixin border-shadow($top: #fff, $bottom: #ddd){
+@mixin border-shadow($top: $gray05, $bottom: $gray04){
border-top: 1px solid $top;
border-bottom: 1px solid $bottom;
}
@@ -34,7 +34,7 @@ body{
font-weight: 300;
font-size: 14px;
background: $background;
- color: $font-main;
+ color: $gray01;
}
h1{
font-size: 1.8em;