Skip to content

Commit

Permalink
makes color contrast better
Browse files Browse the repository at this point in the history
  • Loading branch information
willpinha committed Oct 18, 2024
1 parent cec4a3e commit 07c00d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/lib/create-mantine-theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function createMantineTheme({
`hsl(${baseHue} ${baseSaturation}% 30%)`,
`hsl(${baseHue} ${baseSaturation}% 25%)`,
`hsl(${baseHue} ${baseSaturation}% 13%)`,
`hsl(${baseHue} ${baseSaturation}% 10%)`,
`hsl(${baseHue} ${baseSaturation}% 9%)`,
`hsl(${baseHue} ${baseSaturation}% 8%)`,
`hsl(${baseHue} ${baseSaturation}% 5%)`,
],
Expand All @@ -83,14 +83,14 @@ export function createMantineTheme({
`hsl(${baseHue} 14% 75%)`,
`hsl(${baseHue} 14% 70%)`,
`hsl(${baseHue} 10% 60%)`,
`hsl(${baseHue} 8% 55%)`,
`hsl(${baseHue} 8% 45%)`,
`hsl(${baseHue} 10% 30%)`,
`hsl(${baseHue} 10% 25%)`,
`hsl(${baseHue} 10% 15%)`,
],
},
black: `hsl(${baseHue} 10% 10%)`,
white: `hsl(${baseHue} 10% 95%)`,
white: `hsl(${baseHue} 10% 94%)`,
primaryColor: "primary",
})
);
Expand Down

0 comments on commit 07c00d9

Please sign in to comment.