From 309894e80748b145c0f9a5bade45e463c98a9bf4 Mon Sep 17 00:00:00 2001 From: Val Alexander <68980965+BunsDev@users.noreply.github.com> Date: Mon, 11 May 2026 04:00:33 -0500 Subject: [PATCH] Rename iridescent void theme to mocha mousse - Update the color theme id and label in theme config --- apps/web/src/hooks/themeConfig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/hooks/themeConfig.ts b/apps/web/src/hooks/themeConfig.ts index 440c3d11..0371c6b8 100644 --- a/apps/web/src/hooks/themeConfig.ts +++ b/apps/web/src/hooks/themeConfig.ts @@ -1,7 +1,7 @@ export type Theme = "light" | "dark" | "system"; export type ColorTheme = | "default" - | "iridescent-void" + | "mocha-mousse" | "carbon" | "purple-stuff" | "hot-tamale" @@ -161,7 +161,7 @@ export const CODE_FONTS: ReadonlyArray> = [ export const COLOR_THEMES: { id: ColorTheme; label: string }[] = [ { id: "default", label: "Default" }, - { id: "iridescent-void", label: "Iridescent Void" }, + { id: "mocha-mousse", label: "Mocha Mousse" }, { id: "carbon", label: "Carbon" }, { id: "purple-stuff", label: "Deep Purple" }, { id: "hot-tamale", label: "Hot Tamale" },