From 096f10f22d5b6a1056014769995bb9683346d37f Mon Sep 17 00:00:00 2001 From: Berlin Bruno Date: Mon, 14 Oct 2024 13:03:47 +0530 Subject: [PATCH] feat: add chart color palette Introduce a new color palette for charts, providing consistent styling across different visualizations. This enhances the visual appeal and clarity of data representation. --- src/app/docs/page.tsx | 16 ---------------- tailwind.config.ts | 10 ++++++++++ 2 files changed, 10 insertions(+), 16 deletions(-) delete mode 100644 src/app/docs/page.tsx diff --git a/src/app/docs/page.tsx b/src/app/docs/page.tsx deleted file mode 100644 index e1165ff..0000000 --- a/src/app/docs/page.tsx +++ /dev/null @@ -1,16 +0,0 @@ -export default function DocsPage() { - return ( -
-
-
-

Coming Soon

-
- - - -
-
-
-
- ); -} diff --git a/tailwind.config.ts b/tailwind.config.ts index caece53..cc287ae 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -63,6 +63,16 @@ const config: Config = { DEFAULT: 'hsl(var(--card))', foreground: 'hsl(var(--card-foreground))', }, + chart: { + 1: 'hsl(var(--chart-1))', + 2: 'hsl(var(--chart-2))', + 3: 'hsl(var(--chart-3))', + 4: 'hsl(var(--chart-4))', + 5: 'hsl(var(--chart-5))', + }, + }, + borderRadius: { + DEFAULT: 'var(--radius)', }, }, },