Created
July 26, 2011 03:32
-
-
Save gordonbanderson/1105896 to your computer and use it in GitHub Desktop.
Example of compass color tweaking
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
$baseColor1: #2C1D07; | |
$baseColor2: #2244DD; | |
// navigation | |
$navigationFG: #000; | |
$navigationBG: #FFF; | |
// currently selected | |
$navigationCurrentFG: #000; | |
$navigationCurrentBG: adjust-color($baseColor1, $saturation: -30%, $lightness: 80%);; | |
$navigationCurrentFGTabs: adjust-color($baseColor1, $saturation: +80%, $hue: +20%);; | |
// hovering colors | |
$navigationHoverBG: adjust-color($baseColor1, $saturation: -30%, $lightness: 70%); | |
// general anchor colors | |
$anchorFG: $baseColor2; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment