Change text color to light_gray

This commit is contained in:
Nate Levin 2023-01-06 20:50:30 +13:00
parent cb130191b2
commit 010b9b7e65
2 changed files with 2 additions and 1 deletions

View File

@ -110,6 +110,7 @@ fn upgrade(db: &Connection, mut version: u16) -> Result<(), Error> {
apply_sql!(db, version, 6, "schema6.sql");
apply_sql!(db, version, 7, "schema7.sql");
apply_sql!(db, version, 8, "schema8.sql");
apply_sql!(db, version, 9, "schema9.sql");
tracing::info!("Database is at version {}", version);
Ok(())
}

View File

@ -18,7 +18,7 @@ pub(super) fn dark_mode_visuals() -> Visuals {
// Foreground colors
window_stroke: Stroke::new(1.0, Color32::from_rgb(0x37, 0x96, 0x83)), // DONE
override_text_color: None,
override_text_color: Some(Color32::LIGHT_GRAY),
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