Search code examples
windows-10sublimetext3sublimetext

Change color of folded text in Sublime


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

enter image description here


Solution

  • 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.