From 6bc1cf0fae99304f925f608159ff4d3ef72294c7 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 9 Nov 2023 18:56:42 -0500 Subject: [PATCH] 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 --- assets/themes/src/vscode/synthwave-84/synthwave.json | 6 +++--- crates/theme2/src/themes/synthwave_84.rs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/assets/themes/src/vscode/synthwave-84/synthwave.json b/assets/themes/src/vscode/synthwave-84/synthwave.json index 8e356d587cbaf7d2d904537b0bedaa7cfa10ded6..9b23270d8c5f439bebc205ed218a820129f69ba3 100644 --- a/assets/themes/src/vscode/synthwave-84/synthwave.json +++ b/assets/themes/src/vscode/synthwave-84/synthwave.json @@ -285,7 +285,7 @@ "name": "Inherited class", "scope": "entity.other.inherited-class", "settings": { - "foreground": "#D50D50" + "foreground": "#D50" } }, { @@ -452,7 +452,7 @@ "entity.other.attribute-name.pseudo-class" ], "settings": { - "foreground": "#D50D50" + "foreground": "#D50" } }, { @@ -495,7 +495,7 @@ "name": "Markup link", "scope": "markup.underline.link", "settings": { - "foreground": "#D50D50" + "foreground": "#D50" } }, { diff --git a/crates/theme2/src/themes/synthwave_84.rs b/crates/theme2/src/themes/synthwave_84.rs index a8a25614662dc9837719c54c6cd57115091d74b0..0751e9466d8abde90e269cccb9db7dc42453a60b 100644 --- a/crates/theme2/src/themes/synthwave_84.rs +++ b/crates/theme2/src/themes/synthwave_84.rs @@ -98,14 +98,14 @@ pub fn synthwave_84() -> UserThemeFamily { ( "link_text".into(), UserHighlightStyle { - color: Some(rgba(0xd50c50ff).into()), + color: Some(rgba(0xdd5500ff).into()), ..Default::default() }, ), ( "link_uri".into(), UserHighlightStyle { - color: Some(rgba(0xd50c50ff).into()), + color: Some(rgba(0xdd5500ff).into()), ..Default::default() }, ),