Lighten default blue diff color

The old default was very dark and blended in with
the dark theme's background.
This commit is contained in:
Luke Street 2024-10-18 17:51:23 -06:00
parent 67b63311fc
commit 9ca157d717
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ pub const DEFAULT_COLOR_ROTATION: [Color32; 9] = [
Color32::from_rgb(255, 0, 0),
Color32::from_rgb(255, 255, 0),
Color32::from_rgb(255, 192, 203),
Color32::from_rgb(0, 0, 255),
Color32::from_rgb(128, 128, 255),
Color32::from_rgb(0, 255, 0),
Color32::from_rgb(213, 138, 138),
];