Tweak dark theme

pull/447/merge
Thibaut Courouble 9 years ago
parent 5e936079bf
commit 71491c53c4

@ -9,6 +9,7 @@
font-size: .75rem; font-size: .75rem;
color: $notifColor; color: $notifColor;
background: $notifBackground; background: $notifBackground;
border: $notifBorder;
border-radius: .25rem; border-radius: .25rem;
transition: opacity .2s; transition: opacity .2s;
opacity: 0; opacity: 0;
@ -127,8 +128,8 @@
._notif-tip { ._notif-tip {
color: $textColor; color: $textColor;
background: rgba($tipBackground, .95); background: $tipBackground;
border: 1px solid $tipBorder; border: $tipBorder;
._notif-info { color: $textColorLight; } ._notif-info { color: $textColorLight; }
} }

@ -26,6 +26,7 @@
margin: 0 1rem 0 0; margin: 0 1rem 0 0;
padding: 0 .375rem; padding: 0 .375rem;
color: $textColor; color: $textColor;
text-decoration: none;
&:first-child:before { &:first-child:before {
content: ''; content: '';

@ -22,7 +22,7 @@ body {
a { a {
color: $linkColor; color: $linkColor;
text-decoration: none; text-decoration: $linkTextDecoration;
&:hover { &:hover {
color: $linkColorHover; color: $linkColorHover;

@ -32,6 +32,7 @@
} }
%heading-box { %heading-box {
color: $boxHeaderColor;
background: $boxHeaderBackground; background: $boxHeaderBackground;
border: 1px solid $boxBorder; border: 1px solid $boxBorder;
border-radius: 3px; border-radius: 3px;
@ -72,6 +73,7 @@
padding-left: .5em; padding-left: .5em;
padding-right: .5em; padding-right: .5em;
font-size: inherit; font-size: inherit;
color: $boxHeaderColor;
border: 1px solid $boxBorder; border: 1px solid $boxBorder;
border-radius: 2px; border-radius: 2px;
@extend %label; @extend %label;

@ -33,6 +33,7 @@ $highlightBackground: #fffdcd;
$linkColor: #3377c0; $linkColor: #3377c0;
$linkColorHover: #2f6cb6; $linkColorHover: #2f6cb6;
$linkTextDecoration: none;
$headerBackground: #f0f0f0; $headerBackground: #f0f0f0;
$headerBorder: #d9d9d9; $headerBorder: #d9d9d9;
@ -52,6 +53,7 @@ $noticeBorder: #e2e2c1;
$boxBackground: #fafafa; $boxBackground: #fafafa;
$boxBorder: #d8d8d8; $boxBorder: #d8d8d8;
$boxBorderLight: #e5e5e5; $boxBorderLight: #e5e5e5;
$boxHeaderColor: $textColor;
$boxHeaderBackground: #f5f5f5; $boxHeaderBackground: #f5f5f5;
$noteBackground: #f8f8dd; $noteBackground: #f8f8dd;
@ -72,11 +74,12 @@ $noteRedBorder: #dc7874;
$labelBackground: #f4f4f4; $labelBackground: #f4f4f4;
$notifBackground: rgba(#333, .85); $notifBackground: rgba(#333, .85);
$notifBorder: none;
$notifColor: #fff; $notifColor: #fff;
$notifColorLight: #ccc; $notifColorLight: #ccc;
$tipBackground: #fffdcd; $tipBackground: rgba(#fffdcd, .95);
$tipBorder: #e7dca9; $tipBorder: 1px solid #e7dca9;
$mediumScreen: '(max-width: 800px)'; $mediumScreen: '(max-width: 800px)';

@ -9,74 +9,77 @@ $sidebarWidth: 18rem;
$sidebarMediumWidth: 16rem; $sidebarMediumWidth: 16rem;
$sidebarHiddenWidth: 9px; $sidebarHiddenWidth: 9px;
$contentBackground: #303030; $contentBackground: #33373a;
$documentBackground: #404040; $documentBackground: $contentBackground;
$textColor: #c9c9c9; $textColor: #cbd0d0;
$textColorLight: #858585; $textColorLight: #9da5ad;
$textColorLighter: #706f6f; $textColorLighter: #77787a;
$inputFocusBorder: #444; $inputFocusBorder: false;
$focusBackground: #3d3d3e; $focusBackground: #3f4042;
$focusBorder: #3d3d3e; $focusBorder: #000;
$focusText: #f7f2f2; $focusText: #f7f2f2;
$loadingText: #666; $loadingText: #5d6164;
$splashText: #666; $splashText: $loadingText;
$selectionBackground: #346fce; $selectionBackground: #007acc;
$selectionBorder: #346fce; $selectionBorder: #000;
$selectionText: #fff; $selectionText: #fff;
$highlightBackground: #3d4449; $highlightBackground: #64675f;
$linkColor: #fff; $linkColor: $textColor;
$linkColorHover: #fff; $linkColorHover: white;
$linkTextDecoration: underline;
$headerBackground: #1c1c1c; $headerBackground: #1e1e1e;
$headerBorder: #1c1c1c; $headerBorder: #000;
$sidebarBackground: #262626; $sidebarBackground: #24282a;
$sidebarBorder: #262626; $sidebarBorder: #000;
$scrollbarColor: #515151; $scrollbarColor: #6c6c6f;
$scrollbarColorHover: #888; $scrollbarColorHover: #949697;
$pathBackground: $headerBackground; $pathBackground: $headerBackground;
$pathBorder: $headerBorder; $pathBorder: $headerBorder;
$noticeBackground: #1c1c1c; $noticeBackground: $sidebarBackground;
$noticeBorder: #1c1c1c; $noticeBorder: $sidebarBorder;
$boxBackground: #262626; $boxBackground: $sidebarBackground;
$boxBorder: #000; $boxBorder: $headerBorder;
$boxBorderLight: #000; $boxBorderLight: $headerBorder;
$boxHeaderBackground: #262626; $boxHeaderColor: #dbe4e4;
$boxHeaderBackground: $sidebarBackground;
$noteBackground: #3a4031; $noteBackground: #45474b;
$noteBorder: #000; $noteBorder: #000;
$noteGreenBackground: #223e23; $noteGreenBackground: #284a2a;
$noteGreenBorder: #000; $noteGreenBorder: #000;
$noteBlueBackground: #223546; $noteBlueBackground: #2a4151;
$noteBlueBorder: #000; $noteBlueBorder: #000;
$noteOrangeBackground: #523121; $noteOrangeBackground: #563322;
$noteOrangeBorder: #000; $noteOrangeBorder: #000;
$noteRedBackground: #5b1f22; $noteRedBackground: #603033;
$noteRedBorder: #000; $noteRedBorder: #000;
$labelBackground: #3c3c3e; $labelBackground: $boxBackground;
$notifBackground: rgba(#000, .85); $notifBackground: rgba(#555, .95);
$notifBorder: 1px solid #000;
$notifColor: #fff; $notifColor: #fff;
$notifColorLight: #ccc; $notifColorLight: #ccc;
$tipBackground: #3d4449; $tipBackground: $notifBackground;
$tipBorder: #566166; $tipBorder: $notifBorder;
$mediumScreen: '(max-width: 800px)'; $mediumScreen: '(max-width: 800px)';

Loading…
Cancel
Save