Skip to content

Commit

Permalink
feat: add chart color palette
Browse files Browse the repository at this point in the history
Introduce a new color palette for charts, providing
consistent styling across different visualizations.
This enhances the visual appeal and clarity of data
representation.
  • Loading branch information
berlinbruno committed Oct 14, 2024
1 parent c1a4fd3 commit 096f10f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/app/docs/page.tsx

This file was deleted.

10 changes: 10 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)',
},
},
},
Expand Down

0 comments on commit 096f10f

Please sign in to comment.