From 4194e76e9d3e7c8e34bc6ea6e7a54f10b014eb99 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 6 Oct 2023 14:04:08 +0000 Subject: [PATCH] fix: make the dark mode a bit less dark 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 6c3629812e2fb..99c385424863b 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%)",