fix: theming bug
This commit is contained in:
parent
1c01154395
commit
119f3ce524
4 changed files with 13 additions and 12 deletions
|
@ -118,7 +118,7 @@
|
|||
}
|
||||
|
||||
/* light theme */
|
||||
:root body.theme__light {
|
||||
:root.theme__light {
|
||||
--text-color: var(--color-darkest);
|
||||
--background-color: var(--color-lightest);
|
||||
--text-color-inverted: var(--color-lightest);
|
||||
|
@ -133,7 +133,7 @@
|
|||
}
|
||||
|
||||
/* dark theme */
|
||||
:root body.theme__dark {
|
||||
:root.theme__dark {
|
||||
--text-color: var(--color-lightest);
|
||||
--background-color: var(--color-darkest);
|
||||
--text-color-inverted: var(--color-darkest);
|
||||
|
|
Reference in a new issue