We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee11ca commit 634e007Copy full SHA for 634e007
src/app.rs
@@ -58,7 +58,7 @@ const DEFAULT_COLOR_ROTATION: [Color32; 9] = [
58
Color32::from_rgb(255, 192, 203),
59
Color32::from_rgb(0, 0, 255),
60
Color32::from_rgb(0, 255, 0),
61
- Color32::from_rgb(128, 128, 128),
+ Color32::from_rgb(213, 138, 138),
62
];
63
64
#[derive(serde::Deserialize, serde::Serialize)]
@@ -72,7 +72,7 @@ pub struct ViewConfig {
72
impl Default for ViewConfig {
73
fn default() -> Self {
74
Self {
75
- ui_font: FontId { size: 14.0, family: FontFamily::Proportional },
+ ui_font: FontId { size: 12.0, family: FontFamily::Proportional },
76
code_font: FontId { size: 14.0, family: FontFamily::Monospace },
77
diff_colors: DEFAULT_COLOR_ROTATION.to_vec(),
78
}
0 commit comments