Skip to content

Commit 6bc1cf0

Browse files
authored
Re-import the Synthwave 84 theme (#3297)
This PR re-imports the Synthwave 84 theme now that we support 3-value hex colors. Release Notes: - N/A
1 parent 6f23894 commit 6bc1cf0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

assets/themes/src/vscode/synthwave-84/synthwave.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@
285285
"name": "Inherited class",
286286
"scope": "entity.other.inherited-class",
287287
"settings": {
288-
"foreground": "#D50D50"
288+
"foreground": "#D50"
289289
}
290290
},
291291
{
@@ -452,7 +452,7 @@
452452
"entity.other.attribute-name.pseudo-class"
453453
],
454454
"settings": {
455-
"foreground": "#D50D50"
455+
"foreground": "#D50"
456456
}
457457
},
458458
{
@@ -495,7 +495,7 @@
495495
"name": "Markup link",
496496
"scope": "markup.underline.link",
497497
"settings": {
498-
"foreground": "#D50D50"
498+
"foreground": "#D50"
499499
}
500500
},
501501
{

crates/theme2/src/themes/synthwave_84.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ pub fn synthwave_84() -> UserThemeFamily {
9898
(
9999
"link_text".into(),
100100
UserHighlightStyle {
101-
color: Some(rgba(0xd50c50ff).into()),
101+
color: Some(rgba(0xdd5500ff).into()),
102102
..Default::default()
103103
},
104104
),
105105
(
106106
"link_uri".into(),
107107
UserHighlightStyle {
108-
color: Some(rgba(0xd50c50ff).into()),
108+
color: Some(rgba(0xdd5500ff).into()),
109109
..Default::default()
110110
},
111111
),

0 commit comments

Comments
 (0)