From 6e1f61ea762bff2ac9c790ae71628c40ee150ed6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 16 Mar 2025 18:12:25 +0100 Subject: [PATCH] color generation: smart: remove auto light mode to avoid inconsistency with system --- .../ags/scripts/color_generation/generate_colors_material.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/.config/ags/scripts/color_generation/generate_colors_material.py b/.config/ags/scripts/color_generation/generate_colors_material.py index 5c2c8c71a..d398bccc9 100755 --- a/.config/ags/scripts/color_generation/generate_colors_material.py +++ b/.config/ags/scripts/color_generation/generate_colors_material.py @@ -83,8 +83,6 @@ if args.path is not None: if(args.smart): if(hct.chroma < 20): args.scheme = 'neutral' - if(hct.tone > 60): - darkmode = False elif args.color is not None: argb = hex_to_argb(args.color) hct = Hct.from_int(argb)