Is there any way to change color of the folded text in Sublime. Default color is yellowish.
Asked
Active
Viewed 32 times
1

IGRACH
- 3,506
- 6
- 33
- 48
-
1Yes, this color is defined in the color scheme. Which one are you using? – MattDMo Aug 19 '21 at 14:08
-
I'm using custom one, but could not find the code for folded text. – IGRACH Aug 19 '21 at 15:49
1 Answers
3
Open your .sublime-color-scheme
file, go down to the "globals"
dict, and add something like
"fold_marker": "#06FF05",
which will make it bright green. Obviously, feel free to select your own color.
All of the globals
options are in the color scheme documentation under Global Settings.

MattDMo
- 100,794
- 21
- 241
- 231