// Bootstrap Modules that can go before any custom modifiers @import "../bootstrap/functions"; @import "../bootstrap/variables"; @import "../bootstrap/mixins"; $white: #fff; $gray-100: #f8f9fa; $gray-200: #e9ecef; $gray-300: #dee2e6; $gray-400: #ced4da; $gray-500: #adb5bd; $gray-600: #6c757d; $gray-700: #495057; $gray-800: #343a40; $gray-900: #212529; $black: #000; $grays: (); // stylelint-disable-next-line dollar-variable-default $grays: map-merge(( "100": $gray-100, "200": $gray-200, "300": $gray-300, "400": $gray-400, "500": $gray-500, "600": $gray-600, "700": $gray-700, "800": $gray-800, "900": $gray-900), $grays); // Boostrap Modifiers // Color system $blue: #274e71; $indigo: #6610f2; $purple: #6f42c1; $pink: #e83e8c; $red: #7E3B38; $orange: #BD7F1C; $yellow: #B4BD38; $green: #186429; $teal: #20c997; $cyan: #2E7ABD; $colors: ( "blue": $blue, "indigo": $indigo, "purple": $purple, "pink": $pink, "red": $red, "orange": $orange, "yellow": $yellow, "green": $green, "teal": $teal, "cyan": $cyan ); $primary: $primary_color; $secondary: $secondary_color; $info: $info_color; $success: $success_color; $warning: $warning_color; $danger: $danger_color; $light: $gray-100; $dark: $gray-800; $theme-colors: ( "primary": $primary, "secondary": $secondary, "success": $success, "info": $info, "warning": $warning, "danger": $danger, "light": $light, "dark": $dark ); // Component Variables $enable-gradients: true; $enable-shadows: true; // $link-color: darken($link-color, 20%); // $link-hover-color: darken($link-color, 30%); $navbar-dark-color: dynamic-text-color($primary); $navbar-dark-hover-color: dynamic-text-color($primary); $navbar-dark-active-color: dynamic-text-color($primary); $navbar-dark-disabled-color: dynamic-text-color($primary); $navbar-light-color: dynamic-text-color($primary); $navbar-light-hover-color: dynamic-text-color($primary); $navbar-light-active-color: dynamic-text-color($primary); $navbar-light-disabled-color: dynamic-text-color($primary); $dropdown-link-hover-bg: $secondary; $dropdown-link-active-bg: $secondary; $dropdown-link-hover-color: dynamic-text-color($dropdown-link-hover-bg); $dropdown-link-active-color: dynamic-text-color($dropdown-link-active-bg); $btn-link-disabled-color: $gray-900; $custom-control-label-disabled-color: $gray-900; $custom-select-disabled-color: $gray-900; $dropdown-link-disabled-color: $gray-900; $nav-link-disabled-color: $gray-900; $pagination-disabled-color: $gray-900; $list-group-disabled-color: $gray-900; $breadcrumb-divider-color: $gray-900; $breadcrumb-active-color: $gray-900; $figure-caption-color: $gray-900; $text-muted: $gray-900; $blockquote-small-color: $gray-900; $input-placeholder-color: $gray-900; $table-caption-color: $gray-900; $dropdown-header-color: $gray-900; // These need to go after any custom modifiers @import "../bootstrap/alert"; @import "../bootstrap/badge"; @import "../bootstrap/breadcrumb"; @import "../bootstrap/button-group"; @import "../bootstrap/buttons"; @import "../bootstrap/card"; @import "../bootstrap/carousel"; @import "../bootstrap/close"; @import "../bootstrap/code"; @import "../bootstrap/custom-forms"; @import "../bootstrap/dropdown"; @import "../bootstrap/forms"; @import "../bootstrap/grid"; @import "../bootstrap/images"; @import "../bootstrap/input-group"; @import "../bootstrap/jumbotron"; @import "../bootstrap/list-group"; @import "../bootstrap/media"; @import "../bootstrap/modal"; @import "../bootstrap/nav"; @import "../bootstrap/navbar"; @import "../bootstrap/pagination"; @import "../bootstrap/popover"; @import "../bootstrap/print"; @import "../bootstrap/progress"; @import "../bootstrap/reboot"; @import "../bootstrap/root"; @import "../bootstrap/tables"; @import "../bootstrap/tooltip"; @import "../bootstrap/transitions"; @import "../bootstrap/type"; @import "../bootstrap/utilities";