diff --git a/app/styles/base/_color.scss b/app/styles/base/_color.scss index fd431cc86..e373d516b 100644 --- a/app/styles/base/_color.scss +++ b/app/styles/base/_color.scss @@ -20,7 +20,7 @@ .text-disabled, .text-muted { // color: mix($mid-grey, $light-grey); - color: $mid-grey; + color: $text-muted; } .text-primary { diff --git a/app/styles/pages/_host.scss b/app/styles/pages/_host.scss index 8bbd43996..29f056309 100644 --- a/app/styles/pages/_host.scss +++ b/app/styles/pages/_host.scss @@ -207,11 +207,6 @@ .driver { background-position: center center; background-repeat: no-repeat; - filter: grayscale(100%); - -webkit-filter: grayscale(100%); - -moz-filter: grayscale(100%); - -ms-filter: grayscale(100%); - -o-filter: grayscale(100%); position: relative; max-width: 190px; margin-right: 14px; diff --git a/app/styles/themes/_dark.scss b/app/styles/themes/_dark.scss index 7cfc2ea69..4c4583e87 100644 --- a/app/styles/themes/_dark.scss +++ b/app/styles/themes/_dark.scss @@ -1,8 +1,8 @@ //** Background color for ``. -$body-bg : $black; +$body-bg : #1b1c21; //** Global text color on ``. -$text-color : mix($mid-grey, $light-grey); -$text-muted : darken($mid-grey, 20%); +$text-color : #ffffff; +$text-muted : lighten($mid-grey, 20%); $primary : $primary; //button non state $primary-dark : darken($primary, 20%); @@ -39,7 +39,7 @@ $accent-bg : $accent-two; $accent-border : rgba($light-grey,.05); /*footer*/ -$footer : darken($black, 20%); +$footer : darken(#1b1c21, 20%); // Horizontal line color. @@ -50,13 +50,13 @@ $shadow : rgba(black, .75); //table variables $table-bg : rgba($dark-grey, .7); -$table-header : $body-bg; +$table-header : #141419; $table-nested-header : $black; $table-bg-accent : rgba($mid-grey, .1); $table-bg-hover : rgba($info, .25); $table-bg-active : $table-bg-hover; $table-bg-selected : rgba($info, .20); -$table-border-color : darken($mid-grey, 30); +$table-border-color : #4a4b52; $table-body-separation : 50px; $table-body-separation : 25px; $group-row-height : 50px;