Improve matching for constant tokens further

This commit is contained in:
Marshall Bowers 2023-12-08 11:23:42 -05:00
parent 1b6721170a
commit 6634a5e9f6
4 changed files with 64 additions and 1 deletions

View File

@ -88,6 +88,13 @@ pub fn andromeda() -> UserThemeFamily {
..Default::default()
},
),
(
"constant".into(),
UserHighlightStyle {
color: Some(rgba(0xee5d43ff).into()),
..Default::default()
},
),
(
"emphasis".into(),
UserHighlightStyle {
@ -278,6 +285,13 @@ pub fn andromeda() -> UserThemeFamily {
..Default::default()
},
),
(
"constant".into(),
UserHighlightStyle {
color: Some(rgba(0xee5d43ff).into()),
..Default::default()
},
),
(
"emphasis".into(),
UserHighlightStyle {

View File

@ -94,6 +94,13 @@ pub fn dracula() -> UserThemeFamily {
..Default::default()
},
),
(
"constant".into(),
UserHighlightStyle {
color: Some(rgba(0xbd93f9ff).into()),
..Default::default()
},
),
(
"emphasis".into(),
UserHighlightStyle {

View File

@ -91,6 +91,13 @@ pub fn gruvbox() -> UserThemeFamily {
..Default::default()
},
),
(
"constant".into(),
UserHighlightStyle {
color: Some(rgba(0xd3869bff).into()),
..Default::default()
},
),
(
"emphasis.strong".into(),
UserHighlightStyle {
@ -348,6 +355,13 @@ pub fn gruvbox() -> UserThemeFamily {
..Default::default()
},
),
(
"constant".into(),
UserHighlightStyle {
color: Some(rgba(0xd3869bff).into()),
..Default::default()
},
),
(
"emphasis.strong".into(),
UserHighlightStyle {
@ -605,6 +619,13 @@ pub fn gruvbox() -> UserThemeFamily {
..Default::default()
},
),
(
"constant".into(),
UserHighlightStyle {
color: Some(rgba(0xd3869bff).into()),
..Default::default()
},
),
(
"emphasis.strong".into(),
UserHighlightStyle {
@ -862,6 +883,13 @@ pub fn gruvbox() -> UserThemeFamily {
..Default::default()
},
),
(
"constant".into(),
UserHighlightStyle {
color: Some(rgba(0x8f3f71ff).into()),
..Default::default()
},
),
(
"emphasis.strong".into(),
UserHighlightStyle {
@ -1119,6 +1147,13 @@ pub fn gruvbox() -> UserThemeFamily {
..Default::default()
},
),
(
"constant".into(),
UserHighlightStyle {
color: Some(rgba(0x8f3f71ff).into()),
..Default::default()
},
),
(
"emphasis.strong".into(),
UserHighlightStyle {
@ -1376,6 +1411,13 @@ pub fn gruvbox() -> UserThemeFamily {
..Default::default()
},
),
(
"constant".into(),
UserHighlightStyle {
color: Some(rgba(0x8f3f71ff).into()),
..Default::default()
},
),
(
"emphasis.strong".into(),
UserHighlightStyle {

View File

@ -186,7 +186,7 @@ impl ZedSyntaxToken {
ZedSyntaxToken::Boolean => vec!["constant.language"],
ZedSyntaxToken::Comment => vec!["comment"],
ZedSyntaxToken::CommentDoc => vec!["comment.block.documentation"],
ZedSyntaxToken::Constant => vec!["constant.language", "constant.character"],
ZedSyntaxToken::Constant => vec!["constant", "constant.language", "constant.character"],
ZedSyntaxToken::Constructor => {
vec!["entity.name.function.definition.special.constructor"]
}