From 69b65693c93643d79caf5083fafc0420c6b2e3b4 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 6 Oct 2023 09:09:21 -0500 Subject: [PATCH] fix: make the dark mode a bit less dark (#10107) We got feedback from our Discord that it was a bit too dark, so this brightens it up a little! --- site/src/theme/colors.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/site/src/theme/colors.ts b/site/src/theme/colors.ts index 6c3629812e..99c3854248 100644 --- a/site/src/theme/colors.ts +++ b/site/src/theme/colors.ts @@ -4,12 +4,12 @@ export const colors = { white: "hsl(0, 0%, 100%)", gray: { - 17: "hsl(0, 0%, 1%)", - 16: "hsl(0, 0%, 4%)", - 15: "hsl(0, 0%, 7%)", - 14: "hsl(0, 0%, 11%)", - 13: "hsl(0, 0%, 15%)", - 12: "hsl(0, 0%, 19%)", + 17: "hsl(0, 0%, 4%)", + 16: "hsl(0, 0%, 7%)", + 15: "hsl(0, 0%, 10%)", + 14: "hsl(0, 0%, 14%)", + 13: "hsl(0, 0%, 17%)", + 12: "hsl(0, 0%, 20%)", 11: "hsl(0, 0%, 23%)", 10: "hsl(0, 0%, 27%)", 9: "hsl(0, 0%, 31%)",