_variables.scss 945 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // Fonts
  2. $font-family-base: system-ui, -apple-system, BLinkMacSystemFont, Segoe UI, Roboto,
  3. Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif !default;
  4. // Colors
  5. $color-black: #333 !default;
  6. $color-gray: #939393 !default;
  7. $color-red: #d32f2f !default;
  8. $color-green: #1bb240 !default;
  9. $color-orange: #f6a623 !default;
  10. $color-yellow: #ffd600 !default;
  11. $color-white: #fff !default;
  12. $color-lightgray: #eaeaea !default;
  13. $color-almost-white: #fafafa !default;
  14. $color-blue: #2275d7 !default;
  15. $color-asphalt-gray: #525252 !default;
  16. $color-uppy-pink: #eb2177;
  17. // Sizes
  18. $size-focus-outline: 2px;
  19. $size-focus-offset: 2px;
  20. // Z-index
  21. $zIndex-negative: -1000 !default;
  22. $zIndex-1: 100 !default;
  23. $zIndex-2: 1001 !default;
  24. $zIndex-3: 1002 !default;
  25. $zIndex-3: 1003 !default;
  26. $zIndex-4: 1004 !default;
  27. $zIndex-5: 1005 !default;
  28. // Media Queries
  29. $screen-medium: 'only screen and (min-width: 820px)' !default;