Skip to content

Commit ff87616

Browse files
committed
Fix foreground color on highlighted lines
Using color 15 is subject to vagaries terminal themes. Instead use 231, which I think should always be whitish.
1 parent cf00dd7 commit ff87616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/FuzzyTUI/Appearance.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
private let textColor: Appearance.Color = .palette256(15)
1+
private let textColor: Appearance.Color = .palette256(231)
22
private let backgroundColor: Appearance.Color = .palette256(237)
33

44
/// `Appearance` contains the configuration parameters for the picker.

0 commit comments

Comments
 (0)