@guajiritos/theme-picker 18.0.1 → 18.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/theme.scss +18 -18
package/package.json
CHANGED
package/theme.scss
CHANGED
|
@@ -3,108 +3,108 @@
|
|
|
3
3
|
@use './palettes' as palettes;
|
|
4
4
|
|
|
5
5
|
@mixin theme-guajiritos-theme-picker($theme) {
|
|
6
|
-
$config: mat.get-color-config($theme);
|
|
6
|
+
$config: mat.m2-get-color-config($theme);
|
|
7
7
|
$accent: map.get($config, accent);
|
|
8
8
|
$foreground: map.get($config, foreground);
|
|
9
9
|
|
|
10
10
|
#activePalette {
|
|
11
|
-
box-shadow: 0 0 4px -2px mat.get-color-from-palette($foreground, 'text');
|
|
11
|
+
box-shadow: 0 0 4px -2px mat.m2-get-color-from-palette($foreground, 'text');
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
svg {
|
|
15
15
|
&.ocean-green {
|
|
16
16
|
.svg-color {
|
|
17
|
-
fill: mat.get-color-from-palette(palettes.$ocean-green, 500) !important;
|
|
17
|
+
fill: mat.m2-get-color-from-palette(palettes.$ocean-green, 500) !important;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
&.bright-yellow {
|
|
22
22
|
.svg-color {
|
|
23
|
-
fill: mat.get-color-from-palette(palettes.$bright-yellow, 500) !important;
|
|
23
|
+
fill: mat.m2-get-color-from-palette(palettes.$bright-yellow, 500) !important;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
&.apple {
|
|
28
28
|
.svg-color {
|
|
29
|
-
fill: mat.get-color-from-palette(palettes.$apple, 500) !important;
|
|
29
|
+
fill: mat.m2-get-color-from-palette(palettes.$apple, 500) !important;
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
&.green {
|
|
34
34
|
.svg-color {
|
|
35
|
-
fill: mat.get-color-from-palette(palettes.$green, 500) !important;
|
|
35
|
+
fill: mat.m2-get-color-from-palette(palettes.$green, 500) !important;
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
&.douban-blue {
|
|
40
40
|
.svg-color {
|
|
41
|
-
fill: mat.get-color-from-palette(palettes.$douban-blue, 500) !important;
|
|
41
|
+
fill: mat.m2-get-color-from-palette(palettes.$douban-blue, 500) !important;
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
&.blizzard-blue {
|
|
46
46
|
.svg-color {
|
|
47
|
-
fill: mat.get-color-from-palette(palettes.$blizzard-blue, 500) !important;
|
|
47
|
+
fill: mat.m2-get-color-from-palette(palettes.$blizzard-blue, 500) !important;
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
&.sasquatch-socks {
|
|
52
52
|
.svg-color {
|
|
53
|
-
fill: mat.get-color-from-palette(palettes.$sasquatch-socks, 500) !important;
|
|
53
|
+
fill: mat.m2-get-color-from-palette(palettes.$sasquatch-socks, 500) !important;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
&.sapphire {
|
|
58
58
|
.svg-color {
|
|
59
|
-
fill: mat.get-color-from-palette(palettes.$sapphire, 500) !important;
|
|
59
|
+
fill: mat.m2-get-color-from-palette(palettes.$sapphire, 500) !important;
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
&.ateneo-blue {
|
|
64
64
|
.svg-color {
|
|
65
|
-
fill: mat.get-color-from-palette(palettes.$ateneo-blue, 500) !important;
|
|
65
|
+
fill: mat.m2-get-color-from-palette(palettes.$ateneo-blue, 500) !important;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
&.brilliant-azure {
|
|
70
70
|
.svg-color {
|
|
71
|
-
fill: mat.get-color-from-palette(palettes.$brilliant-azure, 500) !important;
|
|
71
|
+
fill: mat.m2-get-color-from-palette(palettes.$brilliant-azure, 500) !important;
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
&.deep-carmine-pink {
|
|
76
76
|
.svg-color {
|
|
77
|
-
fill: mat.get-color-from-palette(palettes.$deep-carmine-pink, 500) !important;
|
|
77
|
+
fill: mat.m2-get-color-from-palette(palettes.$deep-carmine-pink, 500) !important;
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
&.mustard-yellow {
|
|
82
82
|
.svg-color {
|
|
83
|
-
fill: mat.get-color-from-palette(palettes.$mustard-yellow, 500) !important;
|
|
83
|
+
fill: mat.m2-get-color-from-palette(palettes.$mustard-yellow, 500) !important;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
&.blue-bolt {
|
|
88
88
|
.svg-color {
|
|
89
|
-
fill: mat.get-color-from-palette(palettes.$blue-bolt, 500) !important;
|
|
89
|
+
fill: mat.m2-get-color-from-palette(palettes.$blue-bolt, 500) !important;
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
&.dark-turquoise {
|
|
94
94
|
.svg-color {
|
|
95
|
-
fill: mat.get-color-from-palette(palettes.$dark-turquoise, 500) !important;
|
|
95
|
+
fill: mat.m2-get-color-from-palette(palettes.$dark-turquoise, 500) !important;
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
&.jelly-bean-blue {
|
|
100
100
|
.svg-color {
|
|
101
|
-
fill: mat.get-color-from-palette(palettes.$jelly-bean-blue, 500) !important;
|
|
101
|
+
fill: mat.m2-get-color-from-palette(palettes.$jelly-bean-blue, 500) !important;
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
&.guajipay {
|
|
106
106
|
.svg-color {
|
|
107
|
-
fill: mat.get-color-from-palette(palettes.$guajipay, 500) !important;
|
|
107
|
+
fill: mat.m2-get-color-from-palette(palettes.$guajipay, 500) !important;
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
}
|