Skip to content

Commit

Permalink
Add OBRA color variables
Browse files Browse the repository at this point in the history
  • Loading branch information
scottwillson committed Apr 7, 2012
1 parent 4834c67 commit 5537ccf
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions app/assets/stylesheets/application.css.scss
Expand Up @@ -2,22 +2,30 @@ $font-size-bigger: 16px;


$black: rgb(0, 0, 0); $black: rgb(0, 0, 0);
$near-black: rgb(30, 30, 30); $near-black: rgb(30, 30, 30);
$gray-darker: rgb(90, 90, 90);
$gray: rgb(109, 109, 109);
$mid-gray: rgb(204, 204, 204);
$grayLighter: rgb(238, 238, 238); $grayLighter: rgb(238, 238, 238);
$grayLightest: rgb(250, 250, 250); $grayLightest: rgb(250, 250, 250);
$green-yellow: rgb(208, 250, 48); $green-yellow: rgb(208, 250, 48);


// OBRA 2012
$dark-blue: rgb(1, 6, 62);
$pale-yellow: rgb(254, 244, 0);
$pale-blue: rgb(137, 212, 244);

$highlight-color: $green-yellow; $highlight-color: $green-yellow;
$font-color: $near-black; $font-color: $near-black;


$linkColor: $font-color; $linkColor: $font-color;
$linkColorHover: $black; $linkColorHover: $black;


$nav: rgb(109, 109, 109); $nav-background-color: $gray-darker;
$nav-font-color: rgb(204, 204, 204); $nav-font-color: $mid-gray;


$body-background-color: $grayLightest; $body-background-color: $grayLightest;
$content-background-color: white; $content-background-color: white;
$content-border-color: rgb(204, 204, 204); $content-border-color: $mid-gray;


$tableBorder: rgb(221, 221, 221); $tableBorder: rgb(221, 221, 221);


Expand All @@ -35,10 +43,11 @@ body nav a:hover, body footer a:hover, body a:hover, a:hover {
text-decoration: underline; text-decoration: underline;
} }


h2, h2 a { h2, h2 a, h2 a:hover {
color: rgb(90, 90, 90); color: $gray-darker;
padding-top: $baseLineHeight; padding-top: $baseLineHeight;
text-align: center; text-align: center;
text-decoration: none;
} }


h3, h3 a, h3 a:hover { h3, h3 a, h3 a:hover {
Expand All @@ -52,7 +61,7 @@ h3, h3 a, h3 a:hover {
} }


nav, footer { nav, footer {
background-color: $nav; background-color: $nav-background-color;
border-radius: 3px; border-radius: 3px;
margin-top: $baseLineHeight * 1.5; margin-top: $baseLineHeight * 1.5;
vertical-align: center; vertical-align: center;
Expand Down

0 comments on commit 5537ccf

Please sign in to comment.