Sublime Forum

Removing color schemes

#1

Is it possible to remove all the light themed color schemes, like breakers, sixteen, or ones I installed? I have looked around /home/.config/sublime-text but haven’t found anything that alters the list in the preferences menu. I don’t use light themes so removing them would let me avoid any bright flashes when scrolling through color schemes. Any help is much appreciated.
Thanks.

0 Likes

#2

I don’t believe so. These are built in

0 Likes

#3

You can override the plugin which provides the color scheme selection menu to ignore certain color schemes when populating the list. Install OverrideAudit from Package Control and create an override for Default/ui.py and after the for f in sublime.find_resources('*.sublime-color-scheme'): line, you could either do some magic to load the color scheme and determine if it is light or not, or just exclude them by name.

2 Likes

#4

Per @kingkeith

Something like this will work. Then you create a setting called disllowed_color_schemes in your preferences and populate it with a list of color schemes you don’t want to see

image

1 Like

#5

Ok I will try thanks

0 Likes