From 02dab4b4b76b07f8941a00fdfb33c9aebeb23cf1 Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 15 Apr 2024 23:40:36 +0200 Subject: [PATCH] tweak hud colors --- src/var.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/var.rs b/src/var.rs index dc2adb1..c5df386 100644 --- a/src/var.rs +++ b/src/var.rs @@ -127,11 +127,11 @@ impl Default for Settings { font_size_conversations: 32.0, font_size_choices: 28.0, font_size_console: 20.0, - hud_color: Color::rgb(0.2, 0.5, 0.2), - hud_color_console: Color::rgb(0.2, 0.5, 0.2), + hud_color: Color::rgb(0.1, 0.5, 0.1), + hud_color_console: Color::rgb(0.1, 0.5, 0.1), hud_color_console_warn: Color::rgb(1.0, 0.3, 0.3), hud_color_console_system: Color::rgb(0.5, 0.5, 0.5), - hud_color_alert: Color::rgb(0.8, 0.3, 0.5), + hud_color_alert: Color::rgb(0.6, 0.094, 0.322), hud_color_subtitles: Color::rgb(0.8, 0.8, 0.8), hud_color_choices: Color::rgb(0.45, 0.45, 0.45), chat_speed: DEFAULT_CHAT_SPEED * if dev_mode { 2.5 } else { 1.0 },