You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/material/schematics/ng-generate/theme-color/README.md
+6-2
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@ optimized to have enough contrast to be more accessible. See [Science of Color D
13
13
for more information about Material's color design.
14
14
15
15
For more customization, custom colors can be also be provided for the
16
-
secondary, tertiary, and neutral palette colors. It is recommended to choose colors that
17
-
are contrastful. Material has more detailed guidance for [accessible design](https://m3.material.io/foundations/accessible-design/patterns).
16
+
secondary, tertiary, neutral, neutral variant, and error palette colors. It is recommended to choose
17
+
colors that are contrastful. Material has more detailed guidance for [accessible design](https://m3.material.io/foundations/accessible-design/patterns).
18
18
19
19
## Options
20
20
@@ -30,6 +30,10 @@ secondary color generated from Material based on the primary.
30
30
tertiary color generated from Material based on the primary.
31
31
*`neutralColor` - Color to use for app's neutral color palette. Defaults to
32
32
neutral color generated from Material based on the primary.
33
+
*`neutralVariantColor` - Color to use for app's neutral variant color palette. Defaults to
34
+
neutral variant color generated from Material based on the primary.
35
+
*`errorColor` - Color to use for app's error color palette. Defaults to
36
+
error color generated from Material based on the other palettes.
33
37
*`includeHighContrast` - Whether to define high contrast values for the custom colors in the
34
38
generated file. For Sass files a mixin is defined, see the [high contrast override mixins section](#high-contrast-override-mixins)
it('should be able to generate high contrast themes overrides when provided primary, secondary, tertiary, neutral, and neutral variant color',async()=>{
363
+
consttree=awaitrunM3ThemeSchematic(runner,{
364
+
primaryColor: '#984061',
365
+
secondaryColor: '#984061',
366
+
tertiaryColor: '#984061',
367
+
neutralColor: '#dfdfdf',// Different color since #984061 does not change the tonal palette
368
+
neutralVariantColor: '#dfdfdf',// Different color since #984061 does not change the tonal palette
it('should be able to generate high contrast themes overrides when provided primary, secondary, tertiary, neutral, neutral variant, and error color',async()=>{
390
+
consttree=awaitrunM3ThemeSchematic(runner,{
391
+
primaryColor: '#984061',
392
+
secondaryColor: '#984061',
393
+
tertiaryColor: '#984061',
394
+
neutralColor: '#dfdfdf',// Different color since #984061 does not change the tonal palette
395
+
neutralVariantColor: '#dfdfdf',// Different color since #984061 does not change the tonal palette
0 commit comments