Skip to content

Commit

Permalink
fix: prevent unthemed border on active input option (#104)
Browse files Browse the repository at this point in the history
prevents an unthemed border due to the value not being set to
transparent explicitly.
  • Loading branch information
fvrests authored Oct 14, 2024
1 parent 42e586a commit acb4f6c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion themes/_pinecone-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
"input.foreground": "$text",
"input.placeholderForeground": "$subtle",
"inputOption.activeBackground": "$rose/15",
"inputOption.activeBorder": "",
"inputOption.activeBorder": "$transparent",
"inputOption.activeForeground": "$rose",
"inputValidation.errorBackground": "$surface",
"inputValidation.errorBorder": "$highlightHigh",
Expand Down
1 change: 1 addition & 0 deletions themes/rose-pine-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@
"input.foreground": "#e0def4",
"input.placeholderForeground": "#908caa",
"inputOption.activeBackground": "#ebbcba26",
"inputOption.activeBorder": "#0000",
"inputOption.activeForeground": "#ebbcba",
"inputValidation.errorBackground": "#1f1d2e",
"inputValidation.errorBorder": "#6e6a8666",
Expand Down
1 change: 1 addition & 0 deletions themes/rose-pine-dawn-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@
"input.foreground": "#575279",
"input.placeholderForeground": "#797593",
"inputOption.activeBackground": "#d7827e26",
"inputOption.activeBorder": "#0000",
"inputOption.activeForeground": "#d7827e",
"inputValidation.errorBackground": "#fffaf3",
"inputValidation.errorBorder": "#6e6a8626",
Expand Down
1 change: 1 addition & 0 deletions themes/rose-pine-dawn-no-italics-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@
"input.foreground": "#575279",
"input.placeholderForeground": "#797593",
"inputOption.activeBackground": "#d7827e26",
"inputOption.activeBorder": "#0000",
"inputOption.activeForeground": "#d7827e",
"inputValidation.errorBackground": "#fffaf3",
"inputValidation.errorBorder": "#6e6a8626",
Expand Down
1 change: 1 addition & 0 deletions themes/rose-pine-moon-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@
"input.foreground": "#e0def4",
"input.placeholderForeground": "#908caa",
"inputOption.activeBackground": "#ea9a9726",
"inputOption.activeBorder": "#0000",
"inputOption.activeForeground": "#ea9a97",
"inputValidation.errorBackground": "#2a273f",
"inputValidation.errorBorder": "#817c9c4d",
Expand Down
1 change: 1 addition & 0 deletions themes/rose-pine-moon-no-italics-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@
"input.foreground": "#e0def4",
"input.placeholderForeground": "#908caa",
"inputOption.activeBackground": "#ea9a9726",
"inputOption.activeBorder": "#0000",
"inputOption.activeForeground": "#ea9a97",
"inputValidation.errorBackground": "#2a273f",
"inputValidation.errorBorder": "#817c9c4d",
Expand Down
1 change: 1 addition & 0 deletions themes/rose-pine-no-italics-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@
"input.foreground": "#e0def4",
"input.placeholderForeground": "#908caa",
"inputOption.activeBackground": "#ebbcba26",
"inputOption.activeBorder": "#0000",
"inputOption.activeForeground": "#ebbcba",
"inputValidation.errorBackground": "#1f1d2e",
"inputValidation.errorBorder": "#6e6a8666",
Expand Down

0 comments on commit acb4f6c

Please sign in to comment.