From fa4fc02e9f75a97162e27c266a324833b15fb4b3 Mon Sep 17 00:00:00 2001 From: tommaso Date: Fri, 10 Jul 2026 18:14:04 +0200 Subject: [PATCH] chore(theme): drop "consigliato" hint from the light scheme label Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Mv83a29B4eFv5ixoj6PoE1 --- app/app/lib/theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app/lib/theme.ts b/app/app/lib/theme.ts index 22d8cec..f42e8a7 100644 --- a/app/app/lib/theme.ts +++ b/app/app/lib/theme.ts @@ -23,7 +23,7 @@ export type ColorScheme = "light" | "dark" | "auto"; export const SCHEME_OPTIONS = [ - { label: "Chiaro (consigliato)", value: "light" }, + { label: "Chiaro", value: "light" }, { label: "Scuro", value: "dark" }, { label: "Segue il sistema del visitatore", value: "auto" }, ];