Instantly share code, notes, and snippets.
Last active
October 24, 2015 02:05
-
Star
1
(1)
You must be signed in to star a gist -
Fork
0
(0)
You must be signed in to fork a gist
-
Save jguice/749a8707309fe33efb35 to your computer and use it in GitHub Desktop.
Sublime Text 3 RubyTest custom tmTheme file (applies Twilight theme colors to rspec 3 output)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>TestConsoleTheme</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#141414</string> | |
<key>caret</key> | |
<string>#A7A7A7</string> | |
<key>foreground</key> | |
<string>#F8F8F8</string> | |
<key>invisibles</key> | |
<string>#CAE2FB3D</string> | |
<key>lineHighlight</key> | |
<string>#FFFFFF0D</string> | |
<key>selection</key> | |
<string>#DDF0FF33</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.pass</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#8F9D6A</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.error</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#E10914</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>diff.removed</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#C4543B</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.fail</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#CF6A4C</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.cucumber</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#FFcc66</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.method</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#7587A6</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.skipped</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#545454</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.pending</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#CDA869</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.deprecation</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#F9EE98</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.comment</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#545454</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Test</string> | |
<key>scope</key> | |
<string>test.hidden_comment</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#000000</string> | |
</dict> | |
</dict> | |
</array> | |
<key>uuid</key> | |
<string>72174d10-bb12-11e0-962b-112233445577</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment