Skip to content

Commit

Permalink
Modified default link colours.
Browse files Browse the repository at this point in the history
  • Loading branch information
gma committed Feb 18, 2011
1 parent 2bd819e commit 75249e8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGES
@@ -1,5 +1,7 @@
= 0.9.4 / Unreleased

* Updated the link colours in the default theme.

* Set the default encoding to UTF-8. Without it Heroku would sometimes
fail to render pages (issue 14).

Expand Down
10 changes: 10 additions & 0 deletions views/colors.sass
@@ -0,0 +1,10 @@
$base-color: #262631
$background-color: #fff
$tint: #EAF4F7
$border-color: #71ADCE
$link-color: #006DD1
$visited-link-color: darken($link-color, 5%)
$hover-link-color: lighten($link-color, 15%)
$active-link-color: darken($link-color, 20%)
$nav-link-color: desaturate(lighten($link-color, 25%), 35%)
$meta-color: #87877D
12 changes: 1 addition & 11 deletions views/master.sass
@@ -1,20 +1,10 @@
@import "mixins.sass"
@import "colors.sass"

// Variables
$content-width: 37em

$base-color: #262626
$background-color: #fff
$tint: #f1f1f3
$border-color: #99d
$link-color: #3F63DA
$visited-link-color: darken($link-color, 15%)
$hover-link-color: lighten($link-color, 15%)
$active-link-color: darken($link-color, 50%)
$nav-link-color: desaturate($link-color, 55%)
$meta-color: #999

$border-style: 1px dashed $border-color

// Reset
Expand Down

0 comments on commit 75249e8

Please sign in to comment.