_variables.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. // ---------------------------------------------------------
  2. // IMAGE PATH
  3. // ---------------------------------------------------------
  4. $svg-path: "../../../public/img/icons/svg/";
  5. $img-path: "../../../public/img/";
  6. // ---------------------------------------------------------
  7. // BREAKPOINTS
  8. // ---------------------------------------------------------
  9. $breakpoint-xl : 1440px;
  10. $breakpoint-lg : 1200px;
  11. $breakpoint-md : 992px;
  12. $breakpoint-sm : 768px;
  13. $breakpoint-xs : 480px;
  14. // ---------------------------------------------------------
  15. // GREYSCALE COLORS
  16. // ---------------------------------------------------------
  17. $grey-0 : #ffffff;
  18. $grey-100 : #f9fafb;
  19. $grey-200 : #f2f3f5;
  20. $grey-300 : #e6eaf0;
  21. $grey-400 : #d3d9e3;
  22. $grey-500 : #b9c2d0;
  23. $grey-600 : #7c8695;
  24. $grey-700 : #72777a;
  25. $grey-800 : #565a5c;
  26. $grey-900 : #313435;
  27. // ---------------------------------------------------------
  28. // COLORS THEME DEFAULT
  29. // ---------------------------------------------------------
  30. $default-dark : #54667a;
  31. $default-link : rgb(0, 153, 255);
  32. $default-white : #FFFFFF;
  33. $default-black : #000000;
  34. // ---------------------------------------------------------
  35. // COLORS PAGE
  36. // ---------------------------------------------------------
  37. // linear-gradient(120deg, #00a5e4, #4a71d0);
  38. $page-background : #FFFFFF;
  39. $menu-background : #FFFFFF;
  40. $menu-secondary : #ff3c7e;
  41. $breadcrumb-back : #f9f9f9;
  42. // SIDEBAR
  43. $sidebar-background : #003B88;
  44. $sidebar-border : #0A366F;
  45. $sidebar-link : #FFFFFF;
  46. $sidebar-link-item : #acddfc;
  47. $sidebar-icon : #00BCD4;
  48. $sidebar-link-hover : #ffef5f;
  49. $sidebar-current : rgba(0, 0, 0, 0.15);
  50. $header-link : #54667a;
  51. $header-hover : #ff3c7e;
  52. $breadcrumb-color : #d2f1ff;
  53. $select-color : #ced4da;
  54. //FOOTER
  55. $background-footer : #3F51B5;
  56. $border-footer : #3F51B5;
  57. // ---------------------------------------------------------
  58. // OTHERS
  59. // ---------------------------------------------------------
  60. $collapsed-size : 70px;
  61. $header-height : 65px;
  62. $offscreen-size : 280px;
  63. $card-border-color : #e5e9f2;
  64. $row-table-select : #f9ffff;
  65. $default-yellow : #FFCC00;
  66. // ---------------------------------------------------------
  67. // FONTS
  68. // ---------------------------------------------------------
  69. $font-primary: Roboto, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  70. $font-secondary: $font-primary;
  71. $font-size-base: 0.875rem;
  72. // ---------------------------------------------------------
  73. // FORMS
  74. // ---------------------------------------------------------
  75. $legend-color: #009688;
  76. // BUTTON
  77. $primary_custom: #30c5d8 !default;
  78. $secondary_custom: #fcfcfc !default;
  79. $success_custom: #73c08e !default;
  80. $info_custom: #90d5e9 !default;
  81. $warning_custom: #ffef7d !default;
  82. $danger_custom: #fb8b8b !default;
  83. $light_custom: #ffffff !default;
  84. $dark_custom: #607d8b !default;
  85. $theme-colors-custom: () !default;
  86. // stylelint-disable-next-line scss/dollar-variable-default
  87. $theme-colors-custom: map-merge(
  88. (
  89. "primary": $primary_custom,
  90. "secondary": $secondary_custom,
  91. "success": $success_custom,
  92. "info": $info_custom,
  93. "warning": $warning_custom,
  94. "danger": $danger_custom,
  95. "light": $light_custom,
  96. "dark": $dark_custom
  97. ),
  98. $theme-colors-custom
  99. );