From f80fe998e8ca4bc6de9170a48c1e45df70e984f4 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Thu, 3 Jul 2025 19:46:30 +0200 Subject: [PATCH] feat: Make default lightness be 50%, b=no-bug, c=workspaces --- src/zen/workspaces/ZenGradientGenerator.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zen/workspaces/ZenGradientGenerator.mjs b/src/zen/workspaces/ZenGradientGenerator.mjs index 1b376386..0a996d08 100644 --- a/src/zen/workspaces/ZenGradientGenerator.mjs +++ b/src/zen/workspaces/ZenGradientGenerator.mjs @@ -1628,7 +1628,7 @@ const previousOpacity = this.currentOpacity; const previousLightness = this.#currentLightness; this.currentOpacity = workspace.theme.opacity ?? 0.5; - this.#currentLightness = workspace.theme.lightness ?? 70; + this.#currentLightness = workspace.theme.lightness ?? 50; const gradient = this.getGradient(workspace.theme.gradientColors); this.currentOpacity = previousOpacity; this.#currentLightness = previousLightness;