fix: added theme colors

This commit is contained in:
2025-02-06 15:04:03 +01:00
parent 28b2034c5a
commit a7e800199f

View File

@ -0,0 +1,137 @@
// This file was generated by running 'ng generate @angular/material:theme-color'.
// Proceed with caution if making changes to this file.
@use 'sass:map';
@use '@angular/material' as mat;
// Note: Color palettes are generated from primary: #04293b
$_palettes: (
primary: (
0: #000000,
10: #001e2d,
20: #123446,
25: #1f3f52,
30: #2b4a5d,
35: #37566a,
40: #436276,
50: #5c7b90,
60: #7695aa,
70: #90afc6,
80: #abcbe2,
90: #c7e7ff,
95: #e4f3ff,
98: #f6faff,
99: #fbfcff,
100: #ffffff,
),
secondary: (
0: #000000,
10: #121d24,
20: #27323a,
25: #323d45,
30: #3d4851,
35: #49545c,
40: #546069,
50: #6d7982,
60: #87929c,
70: #a1adb7,
80: #bcc8d2,
90: #d8e4ee,
95: #e6f2fd,
98: #f6faff,
99: #fbfcff,
100: #ffffff,
),
tertiary: (
0: #000000,
10: #26142f,
20: #3c2945,
25: #473451,
30: #533f5c,
35: #604b69,
40: #6c5775,
50: #866f8f,
60: #a088a9,
70: #bca3c5,
80: #d8bee1,
90: #f5d9fe,
95: #fdebff,
98: #fff7fc,
99: #fffbff,
100: #ffffff,
),
neutral: (
0: #000000,
10: #1a1c1d,
20: #2f3032,
25: #3a3b3d,
30: #464748,
35: #515254,
40: #5d5e60,
50: #767779,
60: #909192,
70: #ababad,
80: #c6c6c8,
90: #e3e2e4,
95: #f1f0f2,
98: #faf9fb,
99: #fdfcfd,
100: #ffffff,
4: #0d0e10,
6: #121415,
12: #1e2021,
17: #292a2c,
22: #343536,
24: #38393b,
87: #dadadb,
92: #e8e8e9,
94: #eeedef,
96: #f4f3f5,
),
neutral-variant: (
0: #000000,
10: #171c20,
20: #2c3135,
25: #373c40,
30: #42474c,
35: #4e5358,
40: #5a5f64,
50: #72787d,
60: #8c9196,
70: #a7acb1,
80: #c2c7cc,
90: #dee3e8,
95: #ecf1f7,
98: #f6faff,
99: #fbfcff,
100: #ffffff,
),
error: (
0: #000000,
10: #410002,
20: #690005,
25: #7e0007,
30: #93000a,
35: #a80710,
40: #ba1a1a,
50: #de3730,
60: #ff5449,
70: #ff897d,
80: #ffb4ab,
90: #ffdad6,
95: #ffedea,
98: #fff8f7,
99: #fffbff,
100: #ffffff,
),
);
$_rest: (
secondary: map.get($_palettes, secondary),
neutral: map.get($_palettes, neutral),
neutral-variant: map.get($_palettes, neutral-variant),
error: map.get($_palettes, error),
);
$primary-palette: map.merge(map.get($_palettes, primary), $_rest);
$tertiary-palette: map.merge(map.get($_palettes, tertiary), $_rest);