Skip to content

Instantly share code, notes, and snippets.

@chrisjimallen
Created January 20, 2015 15:35
Show Gist options
  • Save chrisjimallen/2cc17f26060d03ed23c4 to your computer and use it in GitHub Desktop.
Save chrisjimallen/2cc17f26060d03ed23c4 to your computer and use it in GitHub Desktop.
//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