From 584b556732724ce77db631950eb2de59c087a231 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Mon, 23 Sep 2013 16:06:30 +0200 Subject: Structure color definitions and more. --- partials/_base.scss | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) (limited to 'partials/_base.scss') 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"; -- cgit v1.2.3