From 86342705c9b501d4e2b4d2104223748986f4c3c1 Mon Sep 17 00:00:00 2001 From: gloria Date: Wed, 24 Sep 2025 11:26:58 +0200 Subject: [PATCH 1/4] feat: add navigation text color to theme --- apps/website/tailwind.config.js | 1 + apps/website/theme.json | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/website/tailwind.config.js b/apps/website/tailwind.config.js index f81ec88d..9183a49e 100644 --- a/apps/website/tailwind.config.js +++ b/apps/website/tailwind.config.js @@ -52,6 +52,7 @@ module.exports = { contrast: theme.colors.default.theme_color.contrast, "crocoder-green": theme.colors.default.theme_color.crocoder_green, "crocoder-orange": theme.colors.default.theme_color.crocoder_orange, + "light-gray": theme.colors.default.text_color.gray, }, fontSize: { base: font_base + "px", diff --git a/apps/website/theme.json b/apps/website/theme.json index b8c8cb39..a494304d 100644 --- a/apps/website/theme.json +++ b/apps/website/theme.json @@ -16,7 +16,8 @@ "text_color": { "default": "#747577", "dark": "#152035", - "light": "#a1a5ae" + "light": "#a1a5ae", + "gray": "#E8E8E8" } } }, @@ -31,4 +32,4 @@ "base": "16" } } -} +} \ No newline at end of file From f7d9919fd6440f7479c78c1d208f7a339de1a39d Mon Sep 17 00:00:00 2001 From: gloria Date: Wed, 24 Sep 2025 11:57:41 +0200 Subject: [PATCH 2/4] fix: change mobile nav design, change case study titles --- apps/website/src/components/Menu.astro | 4 +- apps/website/src/components/MenuItem.astro | 4 +- apps/website/src/components/navigation.astro | 52 +++++++++++++++----- apps/website/src/layouts/header.astro | 4 +- 4 files changed, 46 insertions(+), 18 deletions(-) diff --git a/apps/website/src/components/Menu.astro b/apps/website/src/components/Menu.astro index 014e94e0..709f9c06 100644 --- a/apps/website/src/components/Menu.astro +++ b/apps/website/src/components/Menu.astro @@ -12,12 +12,12 @@ const { className, title } = Astro.props;