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.
This commit is contained in:
Benjamin Lee 2022-05-25 20:18:48 -07:00
parent dd272fb518
commit 226595123a
No known key found for this signature in database
GPG Key ID: FB9624E2885D55A4
1 changed files with 2 additions and 2 deletions

View File

@ -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(),
],
}
}