Divide red component of unfocused split fill color

This commit is contained in:
Troels Thomsen
2024-12-22 09:59:15 +01:00
parent b92fb2d901
commit 0611ca414f

View File

@ -355,7 +355,7 @@ extension Ghostty {
} }
return .init( return .init(
red: Double(color.r), red: Double(color.r) / 255,
green: Double(color.g) / 255, green: Double(color.g) / 255,
blue: Double(color.b) / 255 blue: Double(color.b) / 255
) )