From 0132f71e51a373af1d72865196c6fe5b18dda1ed Mon Sep 17 00:00:00 2001 From: code913 <54856929+code913@users.noreply.github.com> Date: Tue, 31 Oct 2023 13:35:07 +0530 Subject: [PATCH 1/2] ui: make header brighter --- src/lib/Header.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Header.svelte b/src/lib/Header.svelte index 8165a74..78b6759 100644 --- a/src/lib/Header.svelte +++ b/src/lib/Header.svelte @@ -34,7 +34,7 @@ align-items: center; column-gap: $space; padding: #{$space * 0.5}; - background: var(--md-sys-color-surface-container); + background: var(--md-sys-color-surface-container-high); min-height: 5svh; grid-template: { From 5c07108679e1722c5e935ea9405ed1418db5ce4a Mon Sep 17 00:00:00 2001 From: code913 <54856929+code913@users.noreply.github.com> Date: Tue, 31 Oct 2023 13:36:24 +0530 Subject: [PATCH 2/2] ui: make body brighter --- src/routes/+layout.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 2bd3eca..3eef38c 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -21,8 +21,8 @@ } :global(body) { - background: var(--md-sys-color-background); - color: var(--md-sys-color-on-background); + background: var(--md-sys-color-surface-container); + color: var(--md-sys-color-on-surface); } :global(a) {