diff --git a/CHANGELOG.md b/CHANGELOG.md index adbf635..6f5fbc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Fix incorrect javascript destructuring colors in certain conditions. #203 - Correctly highlight PHP semicolons when php expression is inside string. #208 +- Fix issue preventing folded regions from receiving any highlight colors. #210 ## 2.24.1 diff --git a/src/dracula.yml b/src/dracula.yml index 780946d..3eb44d5 100644 --- a/src/dracula.yml +++ b/src/dracula.yml @@ -189,7 +189,7 @@ colors: editor.selectionBackground: *SELECTION # Color of the editor selection editor.selectionHighlightBackground: *BGLighter # Color for regions with the same content as the selection editor.inactiveSelectionBackground: # Color of the selection in an inactive editor - editor.foldBackground: *BGDark # Background color for folded ranges + editor.foldBackground: !alpha [ *BGDark, 80 ] # Background color for folded ranges editor.wordHighlightBackground: !alpha [ *CYAN, 50 ] # Background color of a symbol during read-access, for example when reading a variable editor.wordHighlightStrongBackground: !alpha [ *GREEN, 50 ] # Background color of a symbol during write-access, for example when writing to a variable