From b8cf58996ff6ad93bcedeb5dc6926db57364d3b8 Mon Sep 17 00:00:00 2001 From: qlrd Date: Fri, 10 Jul 2026 12:52:29 -0300 Subject: [PATCH] chore: remove unused color constants This commit removes two constants on `src/krux/themes.py` once the `vulture` tool found with a 60% of confidence their possibility to be a dead code. Fix #900 --- src/krux/themes.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/krux/themes.py b/src/krux/themes.py index 1964b094e..fe2f8705d 100644 --- a/src/krux/themes.py +++ b/src/krux/themes.py @@ -29,7 +29,6 @@ LIGHTBLACK = 0x0842 DARKGREY = 0xEF7B GREY = 0x14A5 -LIGHTGREY = 0x38C6 DARKWHITE = 0x1CE7 WHITE = 0xFFFF GREEN = 0xE007 @@ -40,7 +39,6 @@ LIGHT_PINK = 0xDFFC PINK = 0x1FF8 DARKPINK = 0x1AD0 -PURPLE = 0x0F78 ORANGE = 0x20FD DARKORANGE = 0xA0CA DARKERORANGE = 0xE0B2