How can I make the scrollbar visible in Sublime Text 3?

In Sublime Text, the color of the scroll bar is too dark (and a bit of contrast), and it’s very difficult to find where to drag, especially when the color scheme is light like Eiffel. Is there a way to change the color of the scroll bar to make it more visible?

+5
source share
1 answer

go to location

C:\Users\userName\AppData\Roaming\Sublime Text 2\Packages\Theme - Default 

or find the file below in your packages folder and edit the file below

 Default.sublime-theme 

in the above file you can search for the text "normal_thumb_vertical.png"

add the line " layer0.tint": [255,80,203] , below

"layer0.texture": "Theme - Default/normal_thumb_vertical.png", string Example: -

 { "class": "puck_control", "layer0.texture": "Theme - Default/normal_thumb_vertical.png", "layer0.tint": [255,80,203], "layer0.opacity": 1.0, "layer0.inner_margin": [0, 10], "content_margin": [8, 12], "blur": false }, 

you can edit the scroll properties in / scroll comments / , you can apply the color code as you want, width, etc. you can change

+4
source

All Articles