Created
January 20, 2015 15:35
-
-
Save chrisjimallen/2cc17f26060d03ed23c4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//colored elements | |
$header-color: #222; | |
$button-color: #368a55; | |
$button-text-color: #fff; | |
$progress-bar-color: #43AC6A; | |
$footer-link-color: #0078a0; | |
// body same as header | |
$body-color: $header-color; | |
// $header-color: pink; | |
// $button-color: teal; | |
// $button-text-color: burlywood; | |
// $progress-bar-color: orange; | |
// $footer-link-color: firebrick; | |
// //body same as header | |
// $body-color: $header-color; | |
// $color-scheme: null; | |
$color-scheme: 'melaleuca'; | |
@if $color-scheme == 'melaleuca' { | |
$header-color: pink; | |
$button-color: teal; | |
$button-text-color: burlywood; | |
$progress-bar-color: orange; | |
$footer-link-color: firebrick; | |
//body same as header | |
$body-color: $header-color; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment