Fix function colors in Gruvbox themes
This commit is contained in:
parent
4353bdb9d5
commit
2ef3954700
2 changed files with 11 additions and 7 deletions
|
@ -124,7 +124,7 @@ pub fn gruvbox() -> UserThemeFamily {
|
||||||
(
|
(
|
||||||
"function".into(),
|
"function".into(),
|
||||||
UserHighlightStyle {
|
UserHighlightStyle {
|
||||||
color: Some(rgba(0xfabd2fff).into()),
|
color: Some(rgba(0x8ec07cff).into()),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -410,7 +410,7 @@ pub fn gruvbox() -> UserThemeFamily {
|
||||||
(
|
(
|
||||||
"function".into(),
|
"function".into(),
|
||||||
UserHighlightStyle {
|
UserHighlightStyle {
|
||||||
color: Some(rgba(0xfabd2fff).into()),
|
color: Some(rgba(0x8ec07cff).into()),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -696,7 +696,7 @@ pub fn gruvbox() -> UserThemeFamily {
|
||||||
(
|
(
|
||||||
"function".into(),
|
"function".into(),
|
||||||
UserHighlightStyle {
|
UserHighlightStyle {
|
||||||
color: Some(rgba(0xfabd2fff).into()),
|
color: Some(rgba(0x8ec07cff).into()),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -982,7 +982,7 @@ pub fn gruvbox() -> UserThemeFamily {
|
||||||
(
|
(
|
||||||
"function".into(),
|
"function".into(),
|
||||||
UserHighlightStyle {
|
UserHighlightStyle {
|
||||||
color: Some(rgba(0xb57614ff).into()),
|
color: Some(rgba(0x427b58ff).into()),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1268,7 +1268,7 @@ pub fn gruvbox() -> UserThemeFamily {
|
||||||
(
|
(
|
||||||
"function".into(),
|
"function".into(),
|
||||||
UserHighlightStyle {
|
UserHighlightStyle {
|
||||||
color: Some(rgba(0xb57614ff).into()),
|
color: Some(rgba(0x427b58ff).into()),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1554,7 +1554,7 @@ pub fn gruvbox() -> UserThemeFamily {
|
||||||
(
|
(
|
||||||
"function".into(),
|
"function".into(),
|
||||||
UserHighlightStyle {
|
UserHighlightStyle {
|
||||||
color: Some(rgba(0xb57614ff).into()),
|
color: Some(rgba(0x427b58ff).into()),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
|
@ -202,7 +202,11 @@ impl ZedSyntaxToken {
|
||||||
"markup.bold markup.italic",
|
"markup.bold markup.italic",
|
||||||
],
|
],
|
||||||
ZedSyntaxToken::Enum => vec!["support.type.enum"],
|
ZedSyntaxToken::Enum => vec!["support.type.enum"],
|
||||||
ZedSyntaxToken::Function => vec!["entity.name.function", "variable.function"],
|
ZedSyntaxToken::Function => vec![
|
||||||
|
"entity.function",
|
||||||
|
"entity.name.function",
|
||||||
|
"variable.function",
|
||||||
|
],
|
||||||
ZedSyntaxToken::Hint => vec![],
|
ZedSyntaxToken::Hint => vec![],
|
||||||
ZedSyntaxToken::Keyword => vec![
|
ZedSyntaxToken::Keyword => vec![
|
||||||
"keyword",
|
"keyword",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue