-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf7dae9
commit b139894
Showing
2 changed files
with
292 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,291 @@ | ||
<?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>Sublime Snazzy</string> | ||
<key>settings</key> | ||
<array> | ||
<dict> | ||
<key>settings</key> | ||
<dict> | ||
<key>background</key> | ||
<string>#1b1e28</string> | ||
<key>caret</key> | ||
<string>#a6accd</string> | ||
<key>foreground</key> | ||
<string>#e4f0fb</string> | ||
<key>invisibles</key> | ||
<string>#767c9d</string> | ||
<key>lineHighlight</key> | ||
<string>#717cb425</string> | ||
<key>selection</key> | ||
<string>#717cb425</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Comment</string> | ||
<key>scope</key> | ||
<string>comment</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#e4f0fb</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>String</string> | ||
<key>scope</key> | ||
<string>string</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#fffac2</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Number</string> | ||
<key>scope</key> | ||
<string>constant.numeric</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#e4f0fb</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Built-in constant</string> | ||
<key>scope</key> | ||
<string>constant.language</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#5DE4c7</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>User-defined constant</string> | ||
<key>scope</key> | ||
<string>constant.character, constant.other</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#5DE4c7</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Variable</string> | ||
<key>scope</key> | ||
<string>variable</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Keyword</string> | ||
<key>scope</key> | ||
<string>keyword</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#d0679d</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Storage</string> | ||
<key>scope</key> | ||
<string>storage</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#d0679d</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Storage type</string> | ||
<key>scope</key> | ||
<string>storage.type</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string>italic</string> | ||
<key>foreground</key> | ||
<string>#ADD7FF</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Class name</string> | ||
<key>scope</key> | ||
<string>entity.name.class</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string>underline</string> | ||
<key>foreground</key> | ||
<string>#ADD7FF</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Inherited class</string> | ||
<key>scope</key> | ||
<string>entity.other.inherited-class</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string>italic underline</string> | ||
<key>foreground</key> | ||
<string>#ADD7FF</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Function name</string> | ||
<key>scope</key> | ||
<string>entity.name.function</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#ADD7FF</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Function argument</string> | ||
<key>scope</key> | ||
<string>variable.parameter</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string>italic</string> | ||
<key>foreground</key> | ||
<string>#FF6AC1</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Tag name</string> | ||
<key>scope</key> | ||
<string>entity.name.tag</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#5DE4c7</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Tag attribute</string> | ||
<key>scope</key> | ||
<string>entity.other.attribute-name</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#ADD7FF</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Library function</string> | ||
<key>scope</key> | ||
<string>support.function</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#fffac2</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Library constant</string> | ||
<key>scope</key> | ||
<string>support.constant</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#fffac2</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Library class/type</string> | ||
<key>scope</key> | ||
<string>support.type, support.class</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>foreground</key> | ||
<string>#fffac2</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Library variable</string> | ||
<key>scope</key> | ||
<string>support.other.variable</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>fontStyle</key> | ||
<string></string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Invalid</string> | ||
<key>scope</key> | ||
<string>invalid</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>background</key> | ||
<string>#d0679d</string> | ||
<key>fontStyle</key> | ||
<string></string> | ||
<key>foreground</key> | ||
<string>#e4f0fb</string> | ||
</dict> | ||
</dict> | ||
<dict> | ||
<key>name</key> | ||
<string>Invalid deprecated</string> | ||
<key>scope</key> | ||
<string>invalid.deprecated</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>background</key> | ||
<string>#d0679d</string> | ||
<key>foreground</key> | ||
<string>#ADD7FF</string> | ||
</dict> | ||
</dict> | ||
</array> | ||
<key>uuid</key> | ||
<string>D8D5E82E-3D5B-46B5-B38E-8C841C21347D</string> | ||
<key>colorSpaceName</key> | ||
<string>sRGB</string> | ||
<key>semanticClass</key> | ||
<string>theme.dark.monokai</string> | ||
</dict> | ||
</plist> |
This file contains 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