variables.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. // @import "@angular/material/theming"; //notice that the file imported is also different
  2. // @include mat-core();
  3. $main-color: #2e368f;
  4. $white-color: #ffffff;
  5. $off-white: #e4e4ef;
  6. $open-blue: #2f2c8333;
  7. $yellow-color: #faea26;
  8. $light-blue: #28abe3;
  9. $gray-color: #00000029;
  10. $open-light-blue: #c4daed;
  11. $green: #4bd37b;
  12. $main-blue: #1877f2;
  13. $dark-blue: #1275b1;
  14. $white-blue: #1da1f2;
  15. $dark-yellow: #e09b3d;
  16. $dark-red: #c74c4d;
  17. $move-color: #7024c4;
  18. $black-color: #252525;
  19. $warning-color: #e732321c;
  20. $card-color: #f4f4f9;
  21. $span-color: #707070;
  22. //PRIMARY THEME
  23. // $mat-primary: (
  24. // main: $main-color,
  25. // lighter: $main-color,
  26. // darker: $main-color,
  27. // 200: #3d4fa1,
  28. // // For slide toggle,
  29. // contrast:
  30. // (
  31. // main: $white-color,
  32. // lighter: $white-color,
  33. // darker: $white-color,
  34. // ),
  35. // );
  36. // $theme-primary: mat-palette($mat-primary, main, lighter, darker);
  37. //ACCENT THEME
  38. // $mat-accent: (
  39. // main: #cf484f,
  40. // lighter: #f4c7db,
  41. // darker: #cf484f,
  42. // 200: #cf484f,
  43. // // For slide toggle,
  44. // contrast:
  45. // (
  46. // main: $white-color,
  47. // lighter: $white-color,
  48. // darker: $white-color,
  49. // ),
  50. // );
  51. // $theme-accent: mat-palette($mat-accent, main, lighter, darker);
  52. // //WARN_THEME
  53. // $mat-warn: (
  54. // main: #ff0000,
  55. // lighter: #ffb3b3,
  56. // darker: #ff0000,
  57. // 200: #ff0000,
  58. // // For slide toggle,
  59. // contrast:
  60. // (
  61. // main: $white-color,
  62. // lighter: $white-color,
  63. // darker: $white-color,
  64. // ),
  65. // );
  66. // $theme-warn: mat-palette($mat-warn, main, lighter, darker);
  67. // $custom-light-theme: mat-light-theme(
  68. // $theme-primary,
  69. // $theme-accent,
  70. // $theme-warn
  71. // );
  72. // @include angular-material-theme($custom-light-theme);
  73. @import "../../app/landing-page/landing-page-theme.scss";
  74. @import "../../app/landing-page/landing-header/landing-header.component.scss";
  75. @import "../../app/authentication/auth-sign-in/auth-sign-in-theme.scss";
  76. @import "../../app/authentication/auth-sign-up/auth-sign-up.component.scss";
  77. @import "../../app/shared/components/warning/warning.component.scss";
  78. @import "../../app/modules/components/side-nav/side-nav.component.scss";
  79. @import "../../app//modules/components/header/header.component.scss";
  80. @import "../../app/modules/dashboard//dashboard-theme.scss";
  81. @import "../../app/modules/profile/profile-theme.scss";
  82. @import "../../app/modules/teams/teams.component.scss";
  83. @import "../../app/modules/task-management//task-managemnt-theme.scss";
  84. @import "./spineer.scss";
  85. @mixin component-theme() {
  86. @include landing-page-theme();
  87. @include header-theme();
  88. @include auth-sign-in-theme();
  89. @include signUp-theme();
  90. @include warning-theme();
  91. @include sid-nav-theme();
  92. @include main-header();
  93. @include dashboard-theme();
  94. @include profile-theme();
  95. @include teams-theme();
  96. @include task-management();
  97. }
  98. @include component-theme();