engelsystem/resources/assets/themes/theme1.scss

94 lines
1.5 KiB
SCSS
Raw Normal View History

// Variables
// --------------------------------------------------
2022-12-22 18:28:51 +01:00
@import 'dark';
2021-08-05 01:00:12 +02:00
//== changed Colors
2022-12-22 18:28:51 +01:00
$gray-darker: #222;
$gray-dark: #282828;
$gray-light: #888;
$gray-lighter: #adafae;
2022-12-22 18:28:51 +01:00
$primary: #437aca;
2021-07-24 12:38:23 +02:00
$secondary: #424242;
2022-12-22 18:28:51 +01:00
$success: #00c960;
$info: #3dbddf;
$warning: #f6b345;
$danger: #e93a44;
$text-muted: $gray-light;
2022-12-22 18:28:51 +01:00
$btn-link-disabled-color: $gray-light;
//== changed Forms
2022-12-22 18:28:51 +01:00
$input-bg: $gray-darker;
$input-bg-disabled: lighten($gray-lighter, 15%);
$input-group-addon-bg: $gray-lighter;
//== changed Pagination
2022-12-22 18:28:51 +01:00
$pagination-hover-color: #fff;
$pagination-active-color: #fff;
//== changed Form states and alerts
2022-12-22 18:28:51 +01:00
$state-success-text: #fff;
$state-success-bg: $success;
$state-success-border: darken($state-success-bg, 5%);
2022-12-22 18:28:51 +01:00
$state-info-text: #fff;
$state-info-bg: $info;
$state-info-border: darken($state-info-bg, 7%);
2022-12-22 18:28:51 +01:00
$state-warning-text: #fff;
$state-warning-bg: $warning;
$state-warning-border: darken($state-warning-bg, 3%);
2022-12-22 18:28:51 +01:00
$state-danger-text: #fff;
$state-danger-bg: $danger;
$state-danger-border: darken($state-danger-bg, 3%);
2022-12-22 18:28:51 +01:00
$headings-small-color: $gray-light;
code {
background-color: $state-info-bg;
color: $state-info-text;
}
$alert-bg-scale: 0%;
$alert-border-scale: 0%;
$alert-color-scale: 0%;
.alert {
color: #fff !important;
2021-07-24 12:38:23 +02:00
.text-danger,
.text-info {
2022-12-22 18:28:51 +01:00
color: #fff !important;
2021-07-24 12:38:23 +02:00
}
}
// dark
2022-12-22 18:28:51 +01:00
@import 'cyborg_variables';
@import 'cyborg_styles';
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
2021-08-14 16:57:23 +02:00
&.bg-warning,
&.bg-info {
2022-12-22 18:28:51 +01:00
color: #000;
2021-08-14 16:57:23 +02:00
}
}