variables.scss 765 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // Variables
  2. //
  3. // Variables should follow the `$component-state-property-size` formula for
  4. // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
  5. // Color system
  6. $white: #fff !default;
  7. $gray-100: #fafbfc !default;
  8. $gray-200: #f4f5f7 !default;
  9. $gray-300: #ebecf0 !default;
  10. $gray-400: #dfe1e6 !default;
  11. $gray-500: #c1c7d0 !default;
  12. $gray-600: #b3bac5 !default;
  13. $gray-700: #a5adba !default;
  14. $gray-800: #505f79 !default;
  15. $gray-900: #172b4d !default;
  16. $black: #091e42 !default;
  17. // Body
  18. //
  19. // Settings for the `<body>` element.
  20. $body-bg: $gray-100 !default;
  21. // Layout
  22. $side-nav-width: 240px !default;
  23. // Options
  24. //
  25. // Quickly modify global styling by enabling or disabling optional features.
  26. $enable-caret: false !default;