From 226595123aef2fe3cc9c1aa0921d79528f18999a Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Wed, 25 May 2022 20:18:48 -0700 Subject: [PATCH] feat(theme): change default ansi color theme Change the default ansi color theme to use colors that are more similar to the colors from the default RGB theme. In particular, don't use red for any of the span labels, since that color is also used for errors. --- src/handlers/theme.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/handlers/theme.rs b/src/handlers/theme.rs index 8d1d1c5..e76a44d 100644 --- a/src/handlers/theme.rs +++ b/src/handlers/theme.rs @@ -125,9 +125,9 @@ impl ThemeStyles { link: style().cyan().underline().bold(), linum: style().dimmed(), highlights: vec![ - style().red().bold(), + style().magenta().bold(), style().yellow().bold(), - style().cyan().bold(), + style().green().bold(), ], } }