Trying to change the checkbox color (due to changing the accent-color) results in a black checkbox.
So I've installed node-sass and was successfully able to change various other stylings, for example, the hover color of a row with $hover-color: cornsilk;
But somehow using:
$accent-color: #fffff1;
or $ag-mat-accent: #fffff1;
does only change it from the default of pink to black.
$ag-icons-path: "~ag-grid-community/src/styles/ag-theme-material/icons/";
$accent-color: #fffff1;
$icon-color: #03a9f4;
$hover-color: cornsilk;
@import "~ag-grid-community/src/styles/ag-grid.scss";
@import "~ag-grid-community/src/styles/ag-theme-material/sass/ag-theme-material.scss";
My expected result would be a whitish checkbox when selected. Instead, I'm getting a black one no matter what color I choose.