diff --git a/src/components/Footer.astro b/src/components/Footer.astro index ada39e8..1fd2234 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -25,6 +25,7 @@ const backgroundColorNightMode = "#240046"; font-size: 1.3rem; letter-spacing: 0.05rem; } + @media (prefers-color-scheme: dark) { footer { background-color: var(--backgroundColorNightMode); diff --git a/src/components/Navigation.astro b/src/components/Navigation.astro index 27b351f..d9a3503 100644 --- a/src/components/Navigation.astro +++ b/src/components/Navigation.astro @@ -1,9 +1,6 @@ --- const backgroundColor = "#ffd4de"; const backgroundColorNightMode = "#240046"; -const transPrideBlue = "#5bcefa"; -const transPridePink = "#f5a9b8"; -const transPrideWhite = "#ffffff"; --- -