variables.scss 2.0 KB

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