From 82a3cad3f5deb61c491553e1d0472f3a466031a7 Mon Sep 17 00:00:00 2001 From: Henry Date: Mon, 1 Apr 2024 12:23:39 +0100 Subject: [PATCH] feat: light mode styling --- src/app/boards/components/BoardsList.tsx | 4 ++-- src/app/boards/page.tsx | 6 +++--- src/app/components/FeedbackButton.tsx | 2 +- src/app/components/ReactiveButton.tsx | 6 ++---- src/app/components/SideNavigation.tsx | 2 +- src/app/components/UserMenu.tsx | 1 - src/app/components/WorkspaceMenu.tsx | 14 +++++++------- src/app/components/dashboard.tsx | 4 ++-- tailwind.config.ts | 11 ++++++----- 9 files changed, 24 insertions(+), 26 deletions(-) diff --git a/src/app/boards/components/BoardsList.tsx b/src/app/boards/components/BoardsList.tsx index 2130681c..554bed93 100644 --- a/src/app/boards/components/BoardsList.tsx +++ b/src/app/boards/components/BoardsList.tsx @@ -19,7 +19,7 @@ export function BoardsList() {
{data?.map((board) => ( -
+
-

+

{board.name}

diff --git a/src/app/boards/page.tsx b/src/app/boards/page.tsx index 0e213796..4c67bf4b 100644 --- a/src/app/boards/page.tsx +++ b/src/app/boards/page.tsx @@ -16,13 +16,13 @@ export default function BoardsPage() { return (
-

+

Boards

))}
-
+
diff --git a/src/app/components/dashboard.tsx b/src/app/components/dashboard.tsx index d17ae3da..a9ad8429 100644 --- a/src/app/components/dashboard.tsx +++ b/src/app/components/dashboard.tsx @@ -14,9 +14,9 @@ export default async function Dashboard(props: { children: React.ReactNode }) { return (
-
+
-

+

kan.bn

diff --git a/tailwind.config.ts b/tailwind.config.ts index 44f9d0d7..467e09bf 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -33,11 +33,12 @@ export default { "light-300": "hsl(0deg 0% 92.9%)", "light-400": "hsl(0deg 0% 91%)", "light-500": "hsl(0deg 0% 88.6%)", - "light-700": "hsl(0deg 0% 85.9%)", - "light-800": "hsl(0deg 0% 78%)", - "light-900": "hsl(0deg 0% 56.1%)", - "light-950": "hsl(0deg 0% 52.2%)", - "light-1000": "hsl(0deg 0% 43.5%)", + "light-600": "hsl(0deg 0% 85.9%)", + "light-700": "hsl(0deg 0% 78%)", + "light-800": "hsl(0deg 0% 56.1%)", + "light-900": "hsl(0deg 0% 52.2%)", + "light-950": "hsl(0deg 0% 43.5%)", + "light-1000": "hsl(0deg 0% 9%)" }, screens: { xxl: '1600px'