Skip to content

Instantly share code, notes, and snippets.

@ravasthi
Created October 24, 2011 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ravasthi/1309665 to your computer and use it in GitHub Desktop.
Save ravasthi/1309665 to your computer and use it in GitHub Desktop.
Color management
$old-copper : #6f452b;
$tuscany : #c8653a;
$hurricane : #94847c;
$bone : #e5dbc7;
$pattens-blue : #dde7f3;
$rain-forest : #696f2b;
$lochinvar : #46948d;
$jacarta : #4b2b6f;
$fire : #8a3528;
$azure : #37649b;
a
{
color: $lochinvar;
}
a:visited
{
color: $jacarta;
}
a:hover, a:active
{
color: darken($lochinvar, 10);
}
$link : $lochinvar;
$visited-link : $jacarta;
$active-link : darken($lochinvar, 10);
a
{
color: $link;
}
a:visited
{
color: $visited-link;
}
a:hover, a:active
{
color: $active-link;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment