From d18639e1e6eea1ec55f654e72e83154b428aa073 Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Mon, 9 Jan 2023 19:16:24 +1300 Subject: [PATCH] Tweak some dark mode colors --- src/ui/style.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ui/style.rs b/src/ui/style.rs index c90ec958..e7ee0781 100644 --- a/src/ui/style.rs +++ b/src/ui/style.rs @@ -17,15 +17,15 @@ pub(super) fn dark_mode_visuals() -> Visuals { code_bg_color: Color32::from_gray(64), // Foreground colors - window_stroke: Stroke::new(1.0, Color32::from_rgb(0x37, 0x96, 0x83)), // DONE - override_text_color: Some(Color32::LIGHT_GRAY), + window_stroke: Stroke::new(1.0, Color32::from_rgb(0x37, 0x96, 0x83)), + override_text_color: Some(Color32::from_gray(190)), warn_fg_color: Color32::from_rgb(255, 143, 0), // orange error_fg_color: Color32::from_rgb(255, 0, 0), // red - hyperlink_color: Color32::from_rgb(0x73, 0x95, 0xae), // DONE + hyperlink_color: Color32::from_rgb(0x73, 0x95, 0xae), selection: Selection { - bg_fill: Color32::from_rgb(0xb1, 0xa2, 0x96), // DONE - stroke: Stroke::new(1.0, Color32::from_rgb(0x37, 0x96, 0x83)), // DONE + bg_fill: Color32::from_rgb(0x57, 0x4a, 0x40), + stroke: Stroke::new(1.0, Color32::from_rgb(0x37, 0x96, 0x83)), }, window_shadow: Shadow::big_dark(),