summaryrefslogtreecommitdiff
path: root/partials/_base.scss
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2013-09-23 16:06:30 +0200
committerJonas Smedegaard <dr@jones.dk>2013-09-23 16:06:30 +0200
commit584b556732724ce77db631950eb2de59c087a231 (patch)
treede1d92942a8eb37003d1119b03c6a1648224c023 /partials/_base.scss
parent30d6e0d2f98e9dc8e43ea7ba9f16d622bf273ca6 (diff)
Structure color definitions and more.
Diffstat (limited to 'partials/_base.scss')
-rw-r--r--partials/_base.scss32
1 files changed, 30 insertions, 2 deletions
diff --git a/partials/_base.scss b/partials/_base.scss
index df8d24d..b8cc418 100644
--- a/partials/_base.scss
+++ b/partials/_base.scss
@@ -1,4 +1,32 @@
-$blueprint-font-family: Arial, Helvetica, sans-serif;
+// Colors
+//
+// (don't use these directly - only referenced by other variables)
+//
+// No styleguide reference.
+$black: black;
+$white: white;
+$green: darkgreen;
+// color model
+$colorBase: $black;
+$colorBg: $white;
+$colorPrimary: $green;
+
+// Typography
+//
+// No styleguide reference.
// Follow W3C recommendation: http://www.w3.org/QA/Tips/font-size
-$blueprint-font-size: 16px;
+$baseFontSize: 16px;
+$baseFontFamily: Arial, Helvetica, sans-serif;
+
+$baseTextColor: $colorBase;
+
+$linkColor: $colorBase;
+$linkHoverColor: $colorPrimary;
+
+$headerColor: $colorPrimary;
+
+// Framework integrations
+//
+// No styleguide reference.
+@import "base-blueprint";