We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b3c7c commit e86367fCopy full SHA for e86367f
1 file changed
tests/frontend/test_theme.py
@@ -89,7 +89,7 @@ class TestGetContrastForeground:
89
def test_light_bg_returns_black(self) -> None:
90
assert get_contrast_foreground("#ffffff") == "#000000"
91
assert get_contrast_foreground("#cccccc") == "#000000"
92
- # Use hex to avoid platform differences (tkinter/matplotlib parse "lime green" differently on Linux CI)
+ # Hex avoids platform differences (named colors parse differently on Linux CI)
93
assert get_contrast_foreground("#32cd32") == "#000000" # lime green
94
95
def test_dark_bg_returns_white(self) -> None:
0 commit comments