diff options
Diffstat (limited to 'sass/_predefined.scss')
-rw-r--r-- | sass/_predefined.scss | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/sass/_predefined.scss b/sass/_predefined.scss index e0fb95b..105172d 100644 --- a/sass/_predefined.scss +++ b/sass/_predefined.scss @@ -1,20 +1,32 @@ // Colors // -//bkup -$theme: #018574; // links // green -$text: #c6cddb; // general text // white grey -$light-grey: #494f5c; // bg // all below are grey darkish -$dark-grey: #3b3e48; -$highlight-grey: #7d828a; -$midnightblue: #2b303b; //#31333d; // to fix code syntax highlighting - +//bkup hermit colors //$theme: #018574; // links // green +//$text: #c6cddb; // general text // white grey +//$light-grey: #494f5c; // bg // all below are grey darkish +//$dark-grey: #3b3e48; +//$highlight-grey: #7d828a; +//$midnightblue: #2b303b; //#31333d; // to fix code syntax highlighting + +// Alphara banner pic colors + +//$theme: #8dabd0; // links // green //$text: #8dabd0; // fg // general text // white //$light-grey: #4e6695; // bg // blue //$dark-grey: #4e6695; //$highlight-grey: #4e6695; -//$midnightblue: #2b303b; +//$midnightblue: #2b303b; // to fix code syntax highlighting + +// My X11 colors + +$theme: #e94c80; +$text: #ace6f0; // fg // general text // white +$light-grey: #0a001f; // bg // blue +$dark-grey: #0a001f; +$highlight-grey: #828ff9; + +$midnightblue: #212121; // to fix code syntax highlighting // Fonts // @@ -29,18 +41,18 @@ $code-fonts: Consolas, "Andale Mono WT", "Andale Mono", Menlo, Monaco, // Mixins // @mixin dimmed { - opacity: 0.6; + opacity: 0.7; } @mixin aTag { a { word-break: break-all; border: none; - box-shadow: inset 0 -4px 0 $theme; + box-shadow: inset 0 -1px 0 $theme; transition-property: background-color; &:hover { - background-color: $theme; + background-color: $dark-grey; } } } |