_variables.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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-asphalt-gray: #525252 !default;
  8. $color-lightgray: #eaeaea !default;
  9. $color-almost-white: #fafafa !default;
  10. $color-white: #fff !default;
  11. $color-red: #d32f2f !default;
  12. $color-orange: #f6a623 !default;
  13. $color-yellow: #ffd600 !default;
  14. $color-green: #1bb240 !default;
  15. $color-blue: #2275d7 !default;
  16. // Shades of gray
  17. // @todo: replace all current grays with them
  18. $gray-50: #fafafa;
  19. $gray-100: #f4f4f4;
  20. $gray-200: #eaeaea;
  21. $gray-300: #dfdfdf;
  22. $gray-400: #bbb;
  23. $gray-500: #939393;
  24. $gray-600: #777;
  25. $gray-700: #525252;
  26. $gray-800: #333;
  27. $gray-900: #1f1f1f;
  28. $color-uppy-pink: #eb2177;
  29. // Sizes
  30. $size-focus-outline: 2px;
  31. $size-focus-offset: 2px;
  32. // Z-index
  33. $zIndex-negative: -1000 !default;
  34. $zIndex-1: 100 !default;
  35. $zIndex-2: 1001 !default;
  36. $zIndex-3: 1002 !default;
  37. $zIndex-3: 1003 !default;
  38. $zIndex-4: 1004 !default;
  39. $zIndex-5: 1005 !default;
  40. // Media Queries
  41. $screen-medium: 'only screen and (min-width: 820px)' !default;