From 634e007cbc3421b2ba7636f1406255f5be25a8cc Mon Sep 17 00:00:00 2001 From: Luke Street Date: Sat, 21 Jan 2023 12:59:46 -0500 Subject: [PATCH] Update default configuration --- src/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.rs b/src/app.rs index b2cb1f3..bf8c071 100644 --- a/src/app.rs +++ b/src/app.rs @@ -58,7 +58,7 @@ const DEFAULT_COLOR_ROTATION: [Color32; 9] = [ Color32::from_rgb(255, 192, 203), Color32::from_rgb(0, 0, 255), Color32::from_rgb(0, 255, 0), - Color32::from_rgb(128, 128, 128), + Color32::from_rgb(213, 138, 138), ]; #[derive(serde::Deserialize, serde::Serialize)] @@ -72,7 +72,7 @@ pub struct ViewConfig { impl Default for ViewConfig { fn default() -> Self { Self { - ui_font: FontId { size: 14.0, family: FontFamily::Proportional }, + ui_font: FontId { size: 12.0, family: FontFamily::Proportional }, code_font: FontId { size: 14.0, family: FontFamily::Monospace }, diff_colors: DEFAULT_COLOR_ROTATION.to_vec(), }