Sublime Forum

How can I quit the colors

#1

It is very useful, but for what i am working is a bit distracting.

0 Likes

#2

View > Syntax > Plain Text or ctrl+shift+p, Set syntax: Plain Text will remove all colors but also code navigation.

You can also create a ‘Color Scheme’ (not a Theme which is something else) with no colors but it will impact all files.

1 Like

#3

ty
I tried to create a theme but i have no idea how to make it work.

0 Likes

#4
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>author</key>
    <string>Chris Thomas</string>
    <key>name</key>
    <string>Espresso Libre No Color</string>
    <key>settings</key>
    <array>
        <dict>
            <key>settings</key>
            <dict>
                <key>background</key>
                <string>#2A211C</string>
                <key>caret</key>
                <string>#889AFF</string>
                <key>foreground</key>
                <string>#BDAE9D</string>
                <key>invisibles</key>
                <string>#BFBFBF</string>
                <key>lineHighlight</key>
                <string>#3A312C</string>
                <key>selection</key>
                <string>#4A414C</string>
            </dict>
    </array>
    <key>uuid</key>
    <string>6B90703E-4E4B-43C8-9D32-921BEDF6D725</string>
</dict>
</plist>

Save it in your Packages/User folder as noColor.tmTheme.
Then you should see this Color scheme in Preferences > Color Scheme > User

0 Likes