Currently, --mdc-theme-text-secondary-on-background is var(--oscd-base3) but this is set the same as: --mdc-theme-background, therefore the text disappears.
See:
|
/* MDC Theme Colors |
|
* Needed for supporting any pluggins still using the depricated MWC Components |
|
*/ |
|
--mdc-theme-primary: var(--oscd-primary); |
|
--mdc-theme-secondary: var(--oscd-secondary); |
|
--mdc-theme-background: var(--oscd-base3); |
|
--mdc-theme-surface: var(--oscd-base3); |
|
--mdc-theme-on-primary: var(--oscd-base2); |
|
--mdc-theme-on-secondary: var(--oscd-base3); |
|
--mdc-theme-on-background: var(--oscd-base00); |
|
--mdc-theme-on-surface: var(--oscd-base00); |
|
--mdc-theme-text-primary-on-background: var(--oscd-base01); |
|
--mdc-theme-text-secondary-on-background: var(--oscd-base3); |
Would this be better?
--mdc-theme-text-primary-on-background: var(--oscd-primary);
--mdc-theme-text-secondary-on-background: var(--oscd-secondary);
I can do a PR if this is of value.
Currently,
--mdc-theme-text-secondary-on-backgroundisvar(--oscd-base3)but this is set the same as:--mdc-theme-background, therefore the text disappears.See:
oscd-shell/src/oscd-shell.ts
Lines 529 to 541 in 15f10d1
Would this be better?
I can do a PR if this is of value.