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.
2 parents 68b7b21 + 9273a94 commit ec3f43bCopy full SHA for ec3f43b
src/code/highlighting.rs
@@ -243,6 +243,14 @@ fn parse_color(color: syntect::highlighting::Color) -> Option<Color> {
243
0x05 => Color::DarkMagenta,
244
0x06 => Color::DarkCyan,
245
0x07 => Color::Grey,
246
+ 0x08 => Color::DarkGrey,
247
+ 0x09 => Color::Red,
248
+ 0x0a => Color::Green,
249
+ 0x0b => Color::Yellow,
250
+ 0x0c => Color::Blue,
251
+ 0x0d => Color::Magenta,
252
+ 0x0e => Color::Cyan,
253
+ 0x0f => Color::White,
254
n => Color::from_ansi(n)?,
255
})
256
} else if color.a == 1 {
0 commit comments