Hi,
I am working on a simple custom-theme, nothing extraordinary. When applying the theme it works and colors get used, but the 'checkbox-selected-checkmark-color' switches from white to black. For better contrast, I need a way to define the color. However, I can’t figure out how or what I may configured wrong. In addition, I don’t want to just overwrite the css-classes to achieve a more robust implementation
https://stackblitz.com/edit/angular-ivy-mwe8hi
My material.scss looks like this:
@include material.core();
$primary-colors: material.define-palette(palette.$primary-palette);
$accent-colors: material.define-palette(palette.$accent-palette);
$warn-colors: material.define-palette(material.$red-palette);
$theme-config: (
color: (
primary: $primary-colors,
accent: $accent-colors,
warn: $warn-colors,
),
typography: $typography-config,
density: -2
);
$theme: material.define-light-theme($theme-config);
@include material.core-theme($theme);
@include material.radio-theme($theme);
@include material.checkbox-theme($theme);