funky-framadate-front/src/styles/themes/_dark.scss

108 lines
2.1 KiB
SCSS
Raw Normal View History

2020-04-21 10:50:26 +02:00
$theme-color-primary: #1b6d85;
$theme-color-secondary: #1b6d85;
$theme-color-tertiary: #ccc;
#big_container {
2020-04-21 10:50:26 +02:00
&.theme-dark-crystal {
background: #222;
color: $theme-color-tertiary;
2020-04-21 10:50:26 +02:00
2020-06-12 19:17:39 +02:00
main,
.big-header,
.navbar,
footer {
2020-04-21 10:50:26 +02:00
background: #444;
}
2020-06-12 19:17:39 +02:00
.big-header {
color: $white;
2020-06-12 19:17:39 +02:00
a {
color: $white;
}
}
2020-06-12 19:17:39 +02:00
input {
background: #222;
color: $white;
}
2020-04-21 10:50:26 +02:00
h1::after {
background-color: $theme-color-primary;
}
.btn--primary:focus,
.btn--primary:hover,
.btn--primary:active,
.btn--primary {
background-color: $theme-color-secondary;
}
.btn--warning:focus,
.btn--warning:hover,
.btn--warning:active,
.btn--warning {
background-color: $theme-color-secondary;
}
select {
background: $theme-color-tertiary;
2020-04-21 10:50:26 +02:00
border-color: $theme-color-secondary;
&:hover {
color: $theme-color-tertiary;
}
}
.title {
color: $theme-color-tertiary;
}
.lang_icon,
.menu_icon {
fill: $theme-color-secondary !important;
color: $theme-color-secondary !important;
}
.big-header {
margin-bottom: 22px;
}
2020-06-12 19:17:39 +02:00
label {
color: $theme-color-tertiary;
}
2020-06-07 13:52:14 +02:00
// bulma override
2020-06-12 19:17:39 +02:00
.button.is-primary,
.button.btn--primary,
button.is-primary,
button.btn--primary,
.is-primary.btn,
.btn.btn--primary,
.is-primary.back,
.back.btn--primary {
2020-06-07 13:52:14 +02:00
background-color: $theme-color-primary !important;
color: $theme-color-tertiary !important;
}
2020-06-12 19:17:39 +02:00
.navbar-dropdown a.navbar-item {
color: #444;
}
2020-06-07 13:52:14 +02:00
// material override
.navbar-dropdown a.navbar-item.is-active,
body .ui-steps .ui-steps-item.ui-state-highlight .ui-steps-number,
2020-06-12 19:17:39 +02:00
a.navbar-item:focus,
a.navbar-item:focus-within,
a.navbar-item:hover,
a.navbar-item.is-active,
.navbar-link:focus,
.navbar-link:focus-within,
.navbar-link:hover,
.navbar-link.is-active {
2020-06-07 13:52:14 +02:00
color: $theme-color-primary !important;
}
2020-06-12 19:17:39 +02:00
.navbar-link:not(.is-arrowless)::after {
2020-06-07 13:52:14 +02:00
border-color: $theme-color-primary;
}
2020-06-12 19:17:39 +02:00
body .ui-inputswitch.ui-inputswitch-checked:not(.ui-state-disabled) .ui-inputswitch-slider {
2020-06-07 13:52:14 +02:00
background-color: $theme-color-primary;
}
2020-04-21 10:50:26 +02:00
}
}