summaryrefslogtreecommitdiffstats
path: root/sass/base
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-10-07 00:03:37 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-10-07 00:03:37 +0200
commitc46e5fdedf37c3d115dd1c1607bc5192a6bf7eae (patch)
treeabe84bac993e4cd18de40227763d72085d4e78f9 /sass/base
parentc0f1e2c2f75bb59d0b5a3570c0a672e12e00a3f4 (diff)
downloadoctopress-theme-jeyzu-c46e5fdedf37c3d115dd1c1607bc5192a6bf7eae.zip
octopress-theme-jeyzu-c46e5fdedf37c3d115dd1c1607bc5192a6bf7eae.tar.gz
basic color setup
Diffstat (limited to 'sass/base')
-rw-r--r--sass/base/_color.scss10
-rw-r--r--sass/base/_layout.scss3
2 files changed, 10 insertions, 3 deletions
diff --git a/sass/base/_color.scss b/sass/base/_color.scss
index ec6ed3b..91c8151 100644
--- a/sass/base/_color.scss
+++ b/sass/base/_color.scss
@@ -1,7 +1,13 @@
-$color-background: #eee;
+// background
+$color-background: #0f0f0f;
+$color-header: #140607;
+$color-footer: #140607;
+$color-index: #200607;
+$color-content: #212121;
+// text
$color-main: #258fb8;
$color-gray01: #666;
$color-gray02: #999;
$color-gray03: #ccc;
$color-gray04: #ddd;
-$color-gray05: #fff; \ No newline at end of file
+$color-gray05: #fff;
diff --git a/sass/base/_layout.scss b/sass/base/_layout.scss
index 22e5804..cee109c 100644
--- a/sass/base/_layout.scss
+++ b/sass/base/_layout.scss
@@ -41,9 +41,10 @@ a{
@include pie-clearfix;
}
.inner{
+ background: $color-content;
width: $max-width;
margin: 0 auto;
@media screen and (max-width: 1040px){
width: 100%;
}
-} \ No newline at end of file
+}