variables.scss 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. //PRIMARY THEME
  21. // $mat-primary: (
  22. // main: $main-color,
  23. // lighter: $main-color,
  24. // darker: $main-color,
  25. // 200: #3d4fa1,
  26. // // For slide toggle,
  27. // contrast:
  28. // (
  29. // main: $white-color,
  30. // lighter: $white-color,
  31. // darker: $white-color,
  32. // ),
  33. // );
  34. // $theme-primary: mat-palette($mat-primary, main, lighter, darker);
  35. //ACCENT THEME
  36. // $mat-accent: (
  37. // main: #cf484f,
  38. // lighter: #f4c7db,
  39. // darker: #cf484f,
  40. // 200: #cf484f,
  41. // // For slide toggle,
  42. // contrast:
  43. // (
  44. // main: $white-color,
  45. // lighter: $white-color,
  46. // darker: $white-color,
  47. // ),
  48. // );
  49. // $theme-accent: mat-palette($mat-accent, main, lighter, darker);
  50. // //WARN_THEME
  51. // $mat-warn: (
  52. // main: #ff0000,
  53. // lighter: #ffb3b3,
  54. // darker: #ff0000,
  55. // 200: #ff0000,
  56. // // For slide toggle,
  57. // contrast:
  58. // (
  59. // main: $white-color,
  60. // lighter: $white-color,
  61. // darker: $white-color,
  62. // ),
  63. // );
  64. // $theme-warn: mat-palette($mat-warn, main, lighter, darker);
  65. // $custom-light-theme: mat-light-theme(
  66. // $theme-primary,
  67. // $theme-accent,
  68. // $theme-warn
  69. // );
  70. // @include angular-material-theme($custom-light-theme);
  71. @import "../../app/landing-page/landing-page-theme.scss";
  72. @import "../../app/landing-page/landing-header/landing-header.component.scss";
  73. @import "../../app/authentication/auth-sign-in/auth-sign-in-theme.scss";
  74. @import "../../app/authentication/auth-sign-up/auth-sign-up.component.scss";
  75. @import "../../app/shared/components/warning/warning.component.scss";
  76. @import "./spineer.scss";
  77. @mixin component-theme() {
  78. @include landing-page-theme();
  79. @include header-theme();
  80. @include auth-sign-in-theme();
  81. @include signUp-theme();
  82. @include warning-theme();
  83. }
  84. @include component-theme();