1

Is there any way to change color of the folded text in Sublime. Default color is yellowish.

enter image description here

IGRACH
  • 3,506
  • 6
  • 33
  • 48

1 Answers1

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