engelsystem/resources/assets/themes/theme14.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

137 lines
2.8 KiB
SCSS
Raw Normal View History

// rc3 teal
//== Colors
2022-12-22 18:28:51 +01:00
@import 'dark';
2022-12-22 18:28:51 +01:00
$gray-darker: #0e1c23;
$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: #05b9ec;
2022-12-22 18:28:51 +01:00
$primary: $brand-primary;
$secondary: #32657e;
$brand-success: #02fae0;
2022-12-22 18:28:51 +01:00
$success: $brand-success;
$brand-info: #025d83;
$info: $brand-info;
$brand-warning: #6800e7;
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/background14.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);
}