score:0

Accepted answer

i was able to determine that the issue was the way i had defined the "text" color within createtheme.

original theme.js

  text: "#000000",

working theme.js

  text: {
    primary: "#000000",
  }

score:0

i think your problem is setting the wrong value in the muibutton color style, maybe should be like this.

muibutton: {
      label: {
        color: "#f1f1f1",
      }
    }


Related Query

More Query from same tag