From d82eba2700e4f80361407c75b05471ef2ef3fd22 Mon Sep 17 00:00:00 2001 From: Charlie Tonneslan Date: Mon, 11 May 2026 15:18:55 -0400 Subject: [PATCH] sqlx-cli: use cyan instead of white for help text literals White is invisible on light terminal backgrounds. Cyan is readable on both light and dark backgrounds, so it's a better default for the literal style. Fixes #4112 --- sqlx-cli/src/opt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-cli/src/opt.rs b/sqlx-cli/src/opt.rs index 48ec0207ba..b38becb853 100644 --- a/sqlx-cli/src/opt.rs +++ b/sqlx-cli/src/opt.rs @@ -16,7 +16,7 @@ use std::path::PathBuf; const HELP_STYLES: Styles = Styles::styled() .header(AnsiColor::Blue.on_default().bold()) .usage(AnsiColor::Blue.on_default().bold()) - .literal(AnsiColor::White.on_default()) + .literal(AnsiColor::Cyan.on_default()) .placeholder(AnsiColor::Green.on_default()); #[derive(Parser, Debug)]