dev env setup

This commit is contained in:
tw-blue
2025-12-06 21:27:29 +01:00
parent 987a380758
commit bc9f0f9f3b
38 changed files with 5953 additions and 733 deletions
+16 -8
View File
@@ -5,16 +5,24 @@
// Learn more about theming and how to use it for your application's
// custom components at https://material.angular.dev/guide/theming
@use '@angular/material' as mat;
@use './styles.colors.scss' as my-theme;
@include mat.core();
@include mat.all-component-themes(my-theme.$light-theme);
@include mat.color-variants-backwards-compatibility(my-theme.$light-theme);
html {
@include mat.theme((
color: (
primary: mat.$cyan-palette,
tertiary: mat.$orange-palette,
),
typography: Roboto,
density: 0,
));
// @include mat.theme((
// color: (
// primary: my-theme.$primary-palette,
// tertiary: my-theme.$tertiary-palette,
// ),
// typography: Roboto,
// density: 0,
// ));
@include mat.core-theme(my-theme.$light-theme);
@include mat.button-theme(my-theme.$light-theme);
}
body {