mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-08 02:24:20 +00:00
72 lines
2.8 KiB
SCSS
72 lines
2.8 KiB
SCSS
// Bootstrap variables overrides for theme
|
|
$enable-negative-margins: true;
|
|
$enable-important-utilities: true !default;
|
|
|
|
// Remove the border from the focused navigation toggler
|
|
$navbar-toggler-focus-width: 0 !default;
|
|
|
|
$base-url: h.$base-url;
|
|
|
|
$font-family-sans-serif: h.$theme-font, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
|
|
$font-size-base: h.$font-size-base !default;
|
|
$headings-font-weight: 600 !default;
|
|
$font-weight-lighter: lighter !default;
|
|
$font-weight-light: 200 !default;
|
|
$font-weight-normal: 300 !default;
|
|
$font-weight-bold: 600 !default;
|
|
$font-weight-bolder: bolder !default;
|
|
|
|
$theme-border-radius: 1rem;
|
|
|
|
strong {
|
|
font-weight: 600 if($enable-important-utilities, !important, null);
|
|
}
|
|
|
|
$navbar-height: h.$navbar-height;
|
|
$navbar-offset: h.$navbar-offset;
|
|
$navbar-offset-xs: h.$navbar-offset-xs;
|
|
$navbar-size: h.$navbar-size;
|
|
$overlay-offset: h.$overlay-offset;
|
|
$primary: h.$primary;
|
|
$secondary: h.$secondary;
|
|
$success: h.$success;
|
|
$info: h.$info;
|
|
$warning: h.$warning;
|
|
$danger: h.$danger;
|
|
$light: h.$light;
|
|
$dark: h.$dark;
|
|
$white: #fff !default;
|
|
$black: #000 !default;
|
|
$body-bg: #fff !default;
|
|
$gray-100: #f8f9fa !default;
|
|
$btn-toggle-color: $black !default;
|
|
|
|
$carousel-dark-indicator-active-bg: #fff !default;
|
|
$carousel-dark-caption-color: #fff !default;
|
|
$carousel-dark-control-icon-filter: invert(0) grayscale(100) !default;
|
|
|
|
$primary-text-emphasis-dark: mix(white, h.$primary, h.$dark-mode-tint) !default;
|
|
$secondary-text-emphasis-dark: mix(white, h.$secondary, h.$dark-mode-tint) !default;
|
|
$link-color-dark: mix(white, h.$primary, h.$dark-mode-tint) !default;
|
|
$primary-bg-subtle-dark: mix(black, h.$primary, h.$dark-mode-shade) !default;
|
|
$primary-border-subtle-dark: mix(black, h.$primary, calc(h.$dark-mode-shade / 2)) !default;
|
|
|
|
$dropdown-transition: opacity .15s ease-in-out !default;
|
|
$dropdown-horizontal-margin-top: calc((-1.5 * 1rem) - 2px);
|
|
$dropdown-horizontal-padding-y: calc(1rem + 2px);
|
|
|
|
$theme-colors: (
|
|
"primary": $primary,
|
|
"secondary": $secondary,
|
|
"success": $success,
|
|
"info": $info,
|
|
"warning": $warning,
|
|
"danger": $danger,
|
|
"light": $light,
|
|
"dark": $dark,
|
|
"white": $white,
|
|
"black": $black,
|
|
"body": $body-bg,
|
|
"body-tertiary": $gray-100,
|
|
);
|