12345678910111213141516171819202122232425262728293031323334353637 |
- // Variables
- //
- // Variables should follow the `$component-state-property-size` formula for
- // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
- // Color system
- $white: #fff !default;
- $gray-100: #fafbfc !default;
- $gray-200: #f4f5f7 !default;
- $gray-300: #ebecf0 !default;
- $gray-400: #dfe1e6 !default;
- $gray-500: #c1c7d0 !default;
- $gray-600: #b3bac5 !default;
- $gray-700: #a5adba !default;
- $gray-800: #505f79 !default;
- $gray-900: #172b4d !default;
- $black: #091e42 !default;
- // Body
- //
- // Settings for the `<body>` element.
- $body-bg: $gray-100 !default;
- // Layout
- $side-nav-width: 240px !default;
- // Options
- //
- // Quickly modify global styling by enabling or disabling optional features.
- $enable-caret: false !default;
|