2021-07-07 11:12:38 +00:00
|
|
|
// Darkly 5.0.2
|
2020-05-19 16:53:54 +00:00
|
|
|
// Bootswatch
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$theme: "darkly" !default;
|
|
|
|
|
2020-05-19 16:53:54 +00:00
|
|
|
//
|
|
|
|
// Color system
|
|
|
|
//
|
|
|
|
|
|
|
|
$white: #fff !default;
|
|
|
|
$gray-100: #f8f9fa !default;
|
|
|
|
$gray-200: #ebebeb !default;
|
|
|
|
$gray-300: #dee2e6 !default;
|
|
|
|
$gray-400: #ced4da !default;
|
|
|
|
$gray-500: #adb5bd !default;
|
|
|
|
$gray-600: #888 !default;
|
|
|
|
$gray-700: #444 !default;
|
|
|
|
$gray-800: #303030 !default;
|
|
|
|
$gray-900: #222 !default;
|
|
|
|
$black: #000 !default;
|
|
|
|
|
|
|
|
$blue: #375a7f !default;
|
|
|
|
$indigo: #6610f2 !default;
|
|
|
|
$purple: #6f42c1 !default;
|
|
|
|
$pink: #e83e8c !default;
|
2020-11-06 13:16:40 +00:00
|
|
|
$red: #e74c3c !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
$orange: #fd7e14 !default;
|
2020-11-06 13:16:40 +00:00
|
|
|
$yellow: #f39c12 !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
$green: #00bc8c !default;
|
|
|
|
$teal: #20c997 !default;
|
2020-11-06 13:16:40 +00:00
|
|
|
$cyan: #3498db !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
$primary: $blue !default;
|
|
|
|
$secondary: $gray-700 !default;
|
|
|
|
$success: $green !default;
|
|
|
|
$info: $cyan !default;
|
|
|
|
$warning: $yellow !default;
|
|
|
|
$danger: $red !default;
|
|
|
|
$light: $gray-500 !default;
|
|
|
|
$dark: $gray-800 !default;
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$min-contrast-ratio: 2.15 !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
// Body
|
|
|
|
|
|
|
|
$body-bg: $gray-900 !default;
|
|
|
|
$body-color: $white !default;
|
|
|
|
|
|
|
|
// Links
|
|
|
|
|
|
|
|
$link-color: $success !default;
|
|
|
|
|
|
|
|
// Fonts
|
|
|
|
|
2020-11-06 13:16:40 +00:00
|
|
|
// stylelint-disable-next-line value-keyword-case
|
|
|
|
$font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
$h1-font-size: 3rem !default;
|
|
|
|
$h2-font-size: 2.5rem !default;
|
|
|
|
$h3-font-size: 2rem !default;
|
|
|
|
$text-muted: $gray-600 !default;
|
|
|
|
|
|
|
|
// Tables
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$table-accent-bg: transparent;
|
2020-05-19 16:53:54 +00:00
|
|
|
$table-border-color: $gray-700 !default;
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$table-bg-scale: 0 !default;
|
|
|
|
|
2020-05-19 16:53:54 +00:00
|
|
|
// Forms
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$input-color: $gray-800 !default;
|
2020-11-06 13:16:40 +00:00
|
|
|
$input-border-color: $body-bg !default;
|
|
|
|
$input-group-addon-color: $gray-500 !default;
|
|
|
|
$input-group-addon-bg: $gray-700 !default;
|
2021-07-07 11:12:38 +00:00
|
|
|
|
|
|
|
$form-check-input-bg: $white !default;
|
|
|
|
$form-check-input-border: none !default;
|
|
|
|
|
|
|
|
$form-file-button-color: $white !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
// Dropdowns
|
|
|
|
|
|
|
|
$dropdown-bg: $gray-900 !default;
|
|
|
|
$dropdown-border-color: $gray-700 !default;
|
|
|
|
$dropdown-divider-bg: $gray-700 !default;
|
|
|
|
$dropdown-link-color: $white !default;
|
|
|
|
$dropdown-link-hover-color: $white !default;
|
|
|
|
$dropdown-link-hover-bg: $primary !default;
|
|
|
|
|
|
|
|
// Navs
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$nav-link-padding-x: 2rem !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
$nav-link-disabled-color: $gray-500 !default;
|
|
|
|
$nav-tabs-border-color: $gray-700 !default;
|
|
|
|
$nav-tabs-link-hover-border-color: $nav-tabs-border-color $nav-tabs-border-color transparent !default;
|
|
|
|
$nav-tabs-link-active-color: $white !default;
|
|
|
|
$nav-tabs-link-active-border-color: $nav-tabs-border-color $nav-tabs-border-color transparent !default;
|
|
|
|
|
|
|
|
// Navbar
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$navbar-padding-y: .75rem !default;
|
|
|
|
$navbar-dark-color: rgba($white, .6) !default;
|
|
|
|
$navbar-dark-hover-color: $white !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
$navbar-light-color: rgba($gray-900, .7) !default;
|
|
|
|
$navbar-light-hover-color: $gray-900 !default;
|
|
|
|
$navbar-light-active-color: $gray-900 !default;
|
|
|
|
$navbar-light-toggler-border-color: rgba($gray-900, .1) !default;
|
|
|
|
|
|
|
|
// Pagination
|
|
|
|
|
|
|
|
$pagination-color: $white !default;
|
|
|
|
$pagination-bg: $success !default;
|
|
|
|
$pagination-border-width: 0 !default;
|
|
|
|
$pagination-border-color: transparent !default;
|
|
|
|
$pagination-hover-color: $white !default;
|
|
|
|
$pagination-hover-bg: lighten($success, 10%) !default;
|
|
|
|
$pagination-hover-border-color: transparent !default;
|
|
|
|
$pagination-active-bg: $pagination-hover-bg !default;
|
|
|
|
$pagination-active-border-color: transparent !default;
|
|
|
|
$pagination-disabled-color: $white !default;
|
|
|
|
$pagination-disabled-bg: darken($success, 15%) !default;
|
|
|
|
$pagination-disabled-border-color: transparent !default;
|
|
|
|
|
|
|
|
// Cards
|
|
|
|
|
|
|
|
$card-cap-bg: $gray-700 !default;
|
|
|
|
$card-bg: $gray-800 !default;
|
|
|
|
|
|
|
|
// Popovers
|
|
|
|
|
|
|
|
$popover-bg: $gray-800 !default;
|
|
|
|
$popover-header-bg: $gray-700 !default;
|
|
|
|
|
|
|
|
// Toasts
|
|
|
|
|
|
|
|
$toast-background-color: $gray-700 !default;
|
|
|
|
$toast-header-background-color: $gray-800 !default;
|
|
|
|
|
|
|
|
// Modals
|
|
|
|
|
|
|
|
$modal-content-bg: $gray-800 !default;
|
|
|
|
$modal-content-border-color: $gray-700 !default;
|
|
|
|
$modal-header-border-color: $gray-700 !default;
|
|
|
|
|
|
|
|
// Progress bars
|
|
|
|
|
|
|
|
$progress-bg: $gray-700 !default;
|
|
|
|
|
|
|
|
// List group
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$list-group-color: $body-color !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
$list-group-bg: $gray-800 !default;
|
|
|
|
$list-group-border-color: $gray-700 !default;
|
|
|
|
$list-group-hover-bg: $gray-700 !default;
|
2021-07-07 11:12:38 +00:00
|
|
|
$list-group-action-hover-color: $list-group-color !default;
|
|
|
|
$list-group-action-active-bg: $gray-900 !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
// Breadcrumbs
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$breadcrumb-padding-y: .375rem !default;
|
|
|
|
$breadcrumb-padding-x: .75rem !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
$breadcrumb-bg: $gray-700 !default;
|
2021-07-07 11:12:38 +00:00
|
|
|
$breadcrumb-border-radius: .25rem !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
// Close
|
|
|
|
|
2021-07-07 11:12:38 +00:00
|
|
|
$btn-close-color: $white !default;
|
|
|
|
$btn-close-opacity: .4 !default;
|
|
|
|
$btn-close-hover-opacity: 1 !default;
|
2020-05-19 16:53:54 +00:00
|
|
|
|
|
|
|
// Code
|
|
|
|
|
|
|
|
$pre-color: inherit !default;
|
2021-07-07 11:12:38 +00:00
|
|
|
|
|
|
|
$link-decoration: none !default;
|