From cbb487744d3731310466868848a0917aee14c20a Mon Sep 17 00:00:00 2001 From: jingkaimori Date: Wed, 2 Jul 2025 16:18:59 +0800 Subject: [PATCH] change cursor color to lighter grey --- src/gui/components/TextInput.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/components/TextInput.zig b/src/gui/components/TextInput.zig index 408c515d..ec055b95 100644 --- a/src/gui/components/TextInput.zig +++ b/src/gui/components/TextInput.zig @@ -514,7 +514,7 @@ pub fn render(self: *TextInput, mousePosition: Vec2f) void { draw.setColor(0x440000ff); self.textBuffer.drawSelection(textPos, @min(selectionStart, cursor), @max(selectionStart, cursor)); } - draw.setColor(0xff747474); + draw.setColor(0xffaaaaaa); draw.rect(cursorPos, Vec2f{1, fontSize}); } }