_variables.scss 675 B

123456789101112131415161718192021222324252627
  1. // Body
  2. $body-bg: #f7fbfd78;
  3. // Typography
  4. $font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  5. $font-size-base: 0.9rem;
  6. $font-weight-lighter: 300;
  7. $line-height-base: 1.6;
  8. $font-size-lg: ($font-size-base * 1.25);
  9. $font-size-sm: ($font-size-base * .875);
  10. $input-height: 2.375rem;
  11. $input-height-sm: 1.9375rem;
  12. $input-height-lg: 3rem;
  13. $input-btn-focus-width: .2rem;
  14. $custom-control-indicator-bg: #dee2e6;
  15. $custom-control-indicator-disabled-bg: #e9ecef;
  16. $custom-control-description-disabled-color: #868e96;
  17. $white: white;
  18. $theme-colors: (
  19. 'primary': #2c78bf,
  20. 'muted' : #697179,
  21. 'dark' : #212529
  22. );
  23. $card-cap-bg: $white;