From deb234655e8257b9c0e807f78f44fa19b1dc2266 Mon Sep 17 00:00:00 2001 From: Dan Cojocaru Date: Mon, 19 Feb 2024 03:15:57 +0100 Subject: [PATCH] Change NS colors --- src/departure.zig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/departure.zig b/src/departure.zig index 6436f62..5eac990 100644 --- a/src/departure.zig +++ b/src/departure.zig @@ -395,11 +395,11 @@ fn draw_ns(state: *AppState) !void { const ms = std.time.milliTimestamp(); const language = @rem(@divTrunc(ms, 5000), 2); - const ns_bg1 = raylib.ColorInt(0xE6e6e6); - const ns_bg2 = raylib.ColorInt(0xbdd1d9); - const ns_fg1 = raylib.ColorInt(0x1a4379); + const ns_bg1 = raylib.ColorInt(0xf7f5ef); + const ns_bg2 = raylib.ColorInt(0xd7e0ed); + const ns_fg1 = raylib.ColorInt(0x233771); const ns_fg2 = raylib.ColorInt(0x6795af); - const ns_fg3 = raylib.ColorInt(0xab5161); + const ns_fg3 = raylib.ColorInt(0xa11e1d); const header_fs: f32 = 16; const station_fs: f32 = 28; const cancel_fs: f32 = 24;