Use IndexMap for a deterministic order when importing syntax colors

This commit is contained in:
Marshall Bowers 2023-11-09 13:12:36 -05:00
parent 1f0fccc353
commit 978cff8095
15 changed files with 143 additions and 143 deletions

View file

@ -74,16 +74,16 @@ pub fn dracula() -> UserThemeFamily {
},
),
(
"punctuation".into(),
"something".into(),
UserHighlightStyle {
color: Some(rgba(0xff79c6ff).into()),
color: Some(rgba(0xf8f8f2ff).into()),
..Default::default()
},
),
(
"something".into(),
"punctuation".into(),
UserHighlightStyle {
color: Some(rgba(0xf8f8f2ff).into()),
color: Some(rgba(0xff79c6ff).into()),
..Default::default()
},
),