Skip to content

Commit f3e6962

Browse files
committed
🎨 Add soft pink color variant for improved string readability
Add soft pink color variant for improved string readability - Add pink_soft (#ff99ff) color to both palette and variants - Update string syntax highlighting to use pink_soft instead of pink_bright for better readability - Maintain consistent color definitions across all variant intensities Provides a gentler pink tone for string literals while preserving the neon aesthetic of the theme.
1 parent 99082c7 commit f3e6962

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lua/silkcircuit/palette.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ M.colors = get_variant_colors()
4242

4343
pink = "#ff00ff", -- PURE NEON MAGENTA
4444
pink_bright = "#ff69ff", -- Hot pink - Maximum vibrance
45+
pink_soft = "#ff99ff", -- Soft pink - like glow mode strings
4546

4647
coral = "#F78C6C", -- Numbers
4748
red = "#ff6363", -- CSS selectors
@@ -120,7 +121,7 @@ function M.update_semantic(colors)
120121
-- Syntax (consistent across all languages)
121122
keyword = colors.purple,
122123
variable = colors.fg,
123-
string = colors.pink_bright,
124+
string = colors.pink_soft,
124125
number = colors.coral,
125126
boolean = colors.pink,
126127
constant = colors.coral,

lua/silkcircuit/variants.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ local function create_variant(intensity)
5454
-- Pinks
5555
pink = "#ff00ff",
5656
pink_bright = "#ff69ff",
57+
pink_soft = "#ff99ff",
5758

5859
-- Others
5960
coral = "#F78C6C",

0 commit comments

Comments
 (0)