add cobalt blue theme (#78)
* added cobalt blue theme * lighten nav items
This commit is contained in:
parent
bdf658f54c
commit
c8687635e8
|
@ -30,6 +30,10 @@ const themes = [
|
|||
{
|
||||
name: 'ozark',
|
||||
label: 'Ozark'
|
||||
},
|
||||
{
|
||||
name: 'cobalt',
|
||||
label: 'Cobalt'
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@ body.theme-oaken.offline,
|
|||
body.theme-scarlet.offline,
|
||||
body.theme-seafoam.offline,
|
||||
body.theme-gecko.offline,
|
||||
body.theme-ozark.offline {
|
||||
body.theme-ozark.offline,
|
||||
body.theme-cobalt.offline {
|
||||
@include baseTheme();
|
||||
}
|
||||
|
|
35
scss/themes/cobalt.scss
Normal file
35
scss/themes/cobalt.scss
Normal file
|
@ -0,0 +1,35 @@
|
|||
$main-theme-color: #08439b;
|
||||
$body-bg-color: #05285c;
|
||||
$anchor-color: #eeae00;
|
||||
$main-text-color: #e0e0e0;
|
||||
$main-bg-color: #08439b;
|
||||
$border-color: lighten($main-bg-color, 16%);
|
||||
$secondary-text-color: darken($main-text-color, 20%);
|
||||
$toast-border: #fafafa;
|
||||
$toast-bg: #333;
|
||||
$focus-outline: lighten($main-bg-color, 16%);
|
||||
$compose-background: lighten($main-theme-color, 32%);
|
||||
|
||||
@import "_base.scss";
|
||||
@import "_dark.scss";
|
||||
|
||||
body.theme-cobalt {
|
||||
@include baseTheme();
|
||||
@include darkTheme();
|
||||
|
||||
--settings-list-item-text: $main-text-color;
|
||||
--settings-list-item-text-hover: $main-text-color;
|
||||
|
||||
--action-button-fill-color-pressed: $anchor-color;
|
||||
--action-button-fill-color-pressed-hover: darken($anchor-color, 2%);
|
||||
--action-button-fill-color-pressed-active: darken($anchor-color, 15%);
|
||||
|
||||
--svg-fill: $secondary-text-color;
|
||||
|
||||
--nav-svg-fill: $main-text-color;
|
||||
--nav-text-color: $main-text-color;
|
||||
--nav-svg-fill-hover: $main-text-color;
|
||||
--nav-text-color-hover: $main-text-color;
|
||||
--nav-a-selected-border: $anchor-color;
|
||||
--nav-a-selected-border-hover: $anchor-color;
|
||||
}
|
|
@ -51,6 +51,7 @@ body.offline,body.theme-hotpants.offline,body.theme-majesty.offline,body.theme-o
|
|||
majesty: "blueviolet",
|
||||
gecko: "#4ab92f",
|
||||
ozark: "#5263af",
|
||||
cobalt: "#08439b",
|
||||
offline: "#999999"
|
||||
}
|
||||
if (localStorage.store_currentInstance && localStorage.store_instanceThemes) {
|
||||
|
|
Loading…
Reference in a new issue