update stylesheet to use solarized colors
This commit is contained in:
parent
5364ebe7e1
commit
8deba93291
3 changed files with 417 additions and 30 deletions
|
@ -59,8 +59,8 @@ a:hover {
|
|||
}
|
||||
|
||||
hr {
|
||||
color: @light-grey;
|
||||
background-color: @light-grey;
|
||||
color: @base00;
|
||||
background-color: @base00;
|
||||
height: 1px;
|
||||
border: none;
|
||||
margin-top: 40px;
|
||||
|
|
389
static/stylesheet/style.min.css
vendored
389
static/stylesheet/style.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -1,52 +1,52 @@
|
|||
// Flex colors
|
||||
@orange: #D9411E;
|
||||
@light-orange: #FF5A09;
|
||||
@white: #ffffff;
|
||||
@grey: #333333;
|
||||
@light-grey: #eeeeee;
|
||||
@med-grey: #999999;
|
||||
@dark-grey: #242121;
|
||||
// solarized colors
|
||||
@base02: #073642;
|
||||
@base1: #93a1a1;
|
||||
@base3: #fdf6e3;
|
||||
@base01: #586e75;
|
||||
@base00: #657b83;
|
||||
@base02: #073642;
|
||||
@base03: #002b36;
|
||||
|
||||
// Font family
|
||||
@sans: 'Source Sans Pro', 'Verdana', sans-serif;
|
||||
@mono: 'Source Code Pro', 'Consolas', monospace;
|
||||
|
||||
// Body
|
||||
@body-bg: @white;
|
||||
@text-color: @dark-grey;
|
||||
@body-bg: @base3;
|
||||
@text-color: @base03;
|
||||
|
||||
// Links
|
||||
@link-color: @orange;
|
||||
@link-hover-color: @light-orange;
|
||||
@link-color: @base02;
|
||||
@link-hover-color: @base1;
|
||||
|
||||
// Sidebar (aside)
|
||||
@sidebar-bg: @grey;
|
||||
@sidebar-text-color: @white;
|
||||
@sidebar-link-color: @white;
|
||||
@sidebar-link-hover-color: @light-grey;
|
||||
@sidebar-bg: @base01;
|
||||
@sidebar-text-color: @base3;
|
||||
@sidebar-link-color: @base3;
|
||||
@sidebar-link-hover-color: @base00;
|
||||
|
||||
// Buttons
|
||||
@btn-bg: @orange;
|
||||
@btn-text-color: @white;
|
||||
@btn-hover-color: @light-orange;
|
||||
@btn-bg: @base02;
|
||||
@btn-text-color: @base3;
|
||||
@btn-hover-color: @base1;
|
||||
|
||||
// Tag cloud
|
||||
@tag-bg: @orange;
|
||||
@tag-text-color: @white;
|
||||
@tag-hover-color: @light-orange;
|
||||
@tag-bg: @base02;
|
||||
@tag-text-color: @base3;
|
||||
@tag-hover-color: @base1;
|
||||
|
||||
// Header
|
||||
@header-text-color: @med-grey;
|
||||
@header-text-color: @base02;
|
||||
|
||||
// Footer
|
||||
@footer-text-color: @med-grey;
|
||||
@footer-border-color: @light-grey;
|
||||
@footer-text-color: @base02;
|
||||
@footer-border-color: @base00;
|
||||
|
||||
// Relativer posts
|
||||
@rel-post-border-color: @light-grey;
|
||||
@rel-post-border-color: @base00;
|
||||
|
||||
// Nav
|
||||
@nav-border-color: @light-grey;
|
||||
@nav-border-color: @base00;
|
||||
|
||||
// Social buttons
|
||||
|
||||
|
|
Loading…
Reference in a new issue