engelsystem/resources/assets/themes/theme13.scss

154 lines
2.9 KiB
SCSS
Raw Normal View History

2021-08-05 01:00:12 +02:00
// rc3 violet
//== Colors
2022-12-22 18:28:51 +01:00
@import 'dark';
2022-12-22 18:28:51 +01:00
$gray-darker: #100e23;
$gray-dark: lighten($gray-darker, 15%);
$gray: lighten($gray-dark, 15%);
$gray-light: lighten($gray, 15%);
$gray-lighter: lighten($gray-light, 15%);
$black: #000;
$brand-primary: #6800e7;
2022-12-22 18:28:51 +01:00
$primary: $brand-primary;
$brand-success: #05b9ec;
2022-12-22 18:28:51 +01:00
$secondary: #3a327e;
$success: $brand-success;
$brand-info: #670295;
$info: $brand-info;
$brand-warning: #fff900;
2022-12-22 18:28:51 +01:00
$warning: $brand-warning;
$brand-danger: #b239ff;
$danger: $brand-danger;
//== Scaffolding
2022-12-22 18:28:51 +01:00
$body-bg: #000;
$text-color: $gray-lighter;
$link-color: #fff;
//== Typography
@font-face {
2022-12-22 18:28:51 +01:00
font-family: 'Montserrat';
src: url('theme13/Montserrat-Regular.woff2') format('woff2'), url('theme13/Montserrat-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
2022-12-22 18:28:51 +01:00
font-family: 'Orbitron';
src: url('theme13/Orbitron-Regular.woff2') format('woff2'), url('theme13/Orbitron-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
$font-family-sans-serif: 'Montserrat', Helvetica Neue, Helvetica, Arial, sans-serif;
2022-12-22 18:28:51 +01:00
$font-family-serif: 'Orbitron', Georgia, 'Times New Roman', Times, serif;
$headings-font-family: $font-family-serif;
//== Buttons
2022-12-22 18:28:51 +01:00
$btn-color: #fff;
$btn-default-bg: lighten($gray-dark, 10%);
2022-12-22 18:28:51 +01:00
$btn-primary-color: #fff;
$btn-primary-border: darken($btn-default-bg, 10%);
2022-12-22 18:28:51 +01:00
$btn-success-color: #fff;
$btn-success-border: darken($btn-default-bg, 10%);
2022-12-22 18:28:51 +01:00
$btn-info-color: #fff;
$btn-info-border: darken($btn-default-bg, 10%);
2022-12-22 18:28:51 +01:00
$btn-warning-color: #fff;
$btn-warning-border: darken($btn-default-bg, 10%);
2022-12-22 18:28:51 +01:00
$btn-danger-color: #fff;
$btn-danger-border: darken($btn-default-bg, 10%);
//== Forms
2022-12-22 18:28:51 +01:00
$input-bg: $gray-darker;
$input-bg-disabled: darken($gray-dark, 10%);
2022-12-22 18:28:51 +01:00
$input-group-addon-bg: $gray-lighter;
//== Pagination
2022-12-22 18:28:51 +01:00
$pagination-color: $black;
2022-12-22 18:28:51 +01:00
$pagination-hover-color: $black;
2022-12-22 18:28:51 +01:00
$pagination-active-color: $black;
//== Form states and alerts
2022-12-22 18:28:51 +01:00
$state-success-text: #fff;
2022-12-22 18:28:51 +01:00
$state-info-text: #fff;
2022-12-22 18:28:51 +01:00
$state-warning-text: #fff;
2022-12-22 18:28:51 +01:00
$state-danger-text: #fff;
//== Labels
2022-12-22 18:28:51 +01:00
$label-link-hover-color: $gray-dark;
//== Badges
2022-12-22 18:28:51 +01:00
$badge-color: $black;
//== Type
2022-12-22 18:28:51 +01:00
$headings-small-color: $gray-light;
// Bootswatch
// -----------------------------------------------------
2022-12-22 18:28:51 +01:00
@import 'cyborg_variables.scss';
@import 'cyborg_styles.scss';
// Forms ======================================================================
.input-group-addon {
background-color: $btn-default-bg;
}
// Containers =================================================================
// code tag
code {
background-color: $input-bg-disabled;
color: $input-color;
}
// Specials ===================================================================
body {
background: #000 url('theme13/background.jpg') no-repeat top left;
}
.navbar.navbar-default {
2022-12-22 18:28:51 +01:00
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(6px);
}
2021-08-14 16:57:23 +02:00
2022-12-22 18:28:51 +01:00
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
&.bg-warning {
color: #000;
}
2021-08-14 16:57:23 +02:00
}