diff --git a/src/app/app.scss b/src/app/app.scss index a77cf58e8..6e71d9caf 100644 --- a/src/app/app.scss +++ b/src/app/app.scss @@ -367,6 +367,9 @@ ion-app.app-root { color: $black; border-radius: 5px; background: rgba(255, 255, 255, .5); + @include darkmode() { + background-color: rgba(0, 0, 0, .5); + } text-align: center; width: 32px; @@ -376,6 +379,8 @@ ion-app.app-root { font-size: 24px; ion-icon { font-size: 24px; + + } } diff --git a/src/components/rich-text-editor/rich-text-editor.scss b/src/components/rich-text-editor/rich-text-editor.scss index d4ba94b06..e2dd2ac07 100644 --- a/src/components/rich-text-editor/rich-text-editor.scss +++ b/src/components/rich-text-editor/rich-text-editor.scss @@ -7,7 +7,7 @@ ion-app.app-root core-rich-text-editor { display: flex; flex-direction: column; @include darkmode() { - background-color: $black; + background-color: $gray-darker; } .core-rte-editor, .core-textarea { @@ -17,7 +17,7 @@ ion-app.app-root core-rich-text-editor { resize: none; background-color: $white; @include darkmode() { - background-color: $black; + background-color: $gray-darker; color: $white; } }