diff options
author | Jonas Smedegaard <dr@jones.dk> | 2011-05-07 00:25:10 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2011-05-07 00:25:10 +0200 |
commit | 5cc3024942331cffb741fac04ccd4cf4cd1ab0f9 (patch) | |
tree | 48e8ed361706b9c8ae5142d9e614a735954295a4 /partials | |
parent | ba84f492a65395ab0eb63193362bdb80dd21bba1 (diff) |
Generalize colors, based on abstract names (not link colors.
Diffstat (limited to 'partials')
-rw-r--r-- | partials/_base.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/partials/_base.scss b/partials/_base.scss index b25a077..11332ef 100644 --- a/partials/_base.scss +++ b/partials/_base.scss @@ -1,4 +1,8 @@ -$link_color: #0066cc; +$base: white; +$accent: #0066cc; +$accent-light: #99ccff; + +$link_color: $accent; $link_hover_color: $link_color; $link_focus_color: $link_hover_color; $link_active_color: $link_color; |