Improve matching for punctuation tokens

This commit is contained in:
Marshall Bowers 2023-12-08 11:07:52 -05:00
parent 53d77b192a
commit a8a5b9524d
10 changed files with 729 additions and 5 deletions

View file

@ -190,7 +190,7 @@ pub fn ayu() -> UserThemeFamily {
(
"punctuation".into(),
UserHighlightStyle {
color: Some(rgba(0x5c6166b3).into()),
color: Some(rgba(0x55b4d480).into()),
..Default::default()
},
),
@ -215,6 +215,13 @@ pub fn ayu() -> UserThemeFamily {
..Default::default()
},
),
(
"punctuation.special".into(),
UserHighlightStyle {
color: Some(rgba(0x55b4d480).into()),
..Default::default()
},
),
(
"string".into(),
UserHighlightStyle {
@ -465,7 +472,7 @@ pub fn ayu() -> UserThemeFamily {
(
"punctuation".into(),
UserHighlightStyle {
color: Some(rgba(0xcccac2b3).into()),
color: Some(rgba(0x5ccfe680).into()),
..Default::default()
},
),
@ -490,6 +497,13 @@ pub fn ayu() -> UserThemeFamily {
..Default::default()
},
),
(
"punctuation.special".into(),
UserHighlightStyle {
color: Some(rgba(0x5ccfe680).into()),
..Default::default()
},
),
(
"string".into(),
UserHighlightStyle {
@ -740,7 +754,7 @@ pub fn ayu() -> UserThemeFamily {
(
"punctuation".into(),
UserHighlightStyle {
color: Some(rgba(0xbfbdb6b3).into()),
color: Some(rgba(0x39bae680).into()),
..Default::default()
},
),
@ -765,6 +779,13 @@ pub fn ayu() -> UserThemeFamily {
..Default::default()
},
),
(
"punctuation.special".into(),
UserHighlightStyle {
color: Some(rgba(0x39bae680).into()),
..Default::default()
},
),
(
"string".into(),
UserHighlightStyle {