variables.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Colors
  3. * ========================================================================== */
  4. $white-base: hsl(255, 255, 255);
  5. $gray-darker: #1B2733;
  6. $gray-dark: #616770;
  7. $gray: #A4AAB5;
  8. $grayish: #C8CCD7;
  9. $gray-light: #ECEDF1;
  10. $gray-lighter: #D8DBE2;
  11. $blue: #0044CB;
  12. $blue-light: #000EA9;
  13. $black: #202134;
  14. $red: #F70062;
  15. $green: #34C555;
  16. $color-replica: #E62565;
  17. $color-migration: $blue;
  18. $task-gray-light: #7F8795;
  19. $task-gray: #D9DCE3;
  20. $execution-line-color: #C8CCD7;
  21. /*
  22. * Typography
  23. * ========================================================================== */
  24. $font-family-base: 'Rubik', sans-serif;
  25. $weight-lightest: 100;
  26. $weight-light: 300;
  27. $weight-regular: 400;
  28. $weight-semibold: 500;
  29. $weight-medium: 600;
  30. $header-text-color: $blue;
  31. /*
  32. * Layout
  33. * ========================================================================== */
  34. $max-content-width: 100%;
  35. $narrow-content-width: 928px;
  36. $wizard-content-width: 768px;
  37. $border-radius: 4px;
  38. /*
  39. * Media queries breakpoints
  40. * ========================================================================== */
  41. $screen-xs-min: 480px; /* Extra small screen / phone */
  42. $screen-sm-min: 768px; /* Small screen / tablet */
  43. $screen-md-min: 992px; /* Medium screen / desktop */
  44. $screen-lg-min: 1200px; /* Large screen / wide desktop */
  45. /*
  46. * Animations
  47. * ========================================================================== */
  48. $animation-swift-out: .45s cubic-bezier(0.3, 1, 0.4, 1) 0s;