diff --git a/front/src/components/Header.astro b/front/src/components/Header.astro index ecac237..de67b25 100644 --- a/front/src/components/Header.astro +++ b/front/src/components/Header.astro @@ -1,11 +1,15 @@ --- import IconLink from "@/components/IconLink.astro"; import MainLinks from "@/components//MainLinks.astro"; + +const { borderVisible = false } = Astro.props; --- -
+
-
+
diff --git a/front/src/components/ThemeToggleButton.astro b/front/src/components/ThemeToggleButton.astro index fac8013..92647e2 100644 --- a/front/src/components/ThemeToggleButton.astro +++ b/front/src/components/ThemeToggleButton.astro @@ -105,11 +105,11 @@ import { Icon } from "astro-icon/components"; @keyframes fadein { 0% { opacity: 0; - background-color: #d8dee9; + background-color: #e5e9f0; } 100% { opacity: 1; - background-color: #d8dee9; + background-color: #e5e9f0; } } body.fadeinlightclass { diff --git a/front/src/layouts/PageLayout.astro b/front/src/layouts/PageLayout.astro index 6a9a78c..83f4d9f 100644 --- a/front/src/layouts/PageLayout.astro +++ b/front/src/layouts/PageLayout.astro @@ -15,7 +15,7 @@ const { blogComments } = Astro.props; --- -
+
{blogComments && } diff --git a/front/tailwind.config.cjs b/front/tailwind.config.cjs index 7a534cf..79c35cc 100644 --- a/front/tailwind.config.cjs +++ b/front/tailwind.config.cjs @@ -10,12 +10,12 @@ module.exports = { }, colors: { "main": "#3B4252", - "main-dark": "#D8DEE9", + "main-dark": "#E5E9F0", "sub": "#81A1C1", "sub-dark": "#81A1C1", "sub-darker": "#5E81AC", "sub-darker-dark": "#5E81AC", - "background": "#D8DEE9", + "background": "#E5E9F0", "background-dark": "#3B4252", "red": "#BF616A", "orange": "#D08770", @@ -25,7 +25,9 @@ module.exports = { "purple": "#B48EAD", "purple-lighter": "#C69ABE", "blue": "#5E81AC", - }, + "gray": "#D8DEE9", + "gray-dark": "#4C566A", + }, typography: (theme) => ({ DEFAULT: { css: {