Last active
August 29, 2015 13:58
-
-
Save aeakett/9974521 to your computer and use it in GitHub Desktop.
Additions to SublimeText 2's Solarized dark theme to make working in markdown nicer
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
<dict> | |
<key>name</key> | |
<string>Markdown start/end</string> | |
<key>scope</key> | |
<string>punctuation.definition.bold.markdown, punctuation.definition.italic.markdown</string> | |
<key>settings</key> | |
<dict> | |
<key>foreground</key> | |
<string>#585858</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Markup.italic</string> | |
<key>scope</key> | |
<string>markup.italic</string> | |
<key>settings</key> | |
<dict> | |
<key>fontStyle</key> | |
<string>italic</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Markup.bold</string> | |
<key>scope</key> | |
<string>markup.bold</string> | |
<key>settings</key> | |
<dict> | |
<key>fontStyle</key> | |
<string>bold</string> | |
<key>foreground</key> | |
<string>#e4e4e4</string> | |
</dict> | |
</dict> | |
<dict> | |
<key>name</key> | |
<string>Markdown: Linebreak</string> | |
<key>scope</key> | |
<string>text.html.markdown meta.dummy.line-break</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#073642</string> | |
<key>foreground</key> | |
<string>#E0EDDD</string> | |
</dict> | |
</dict> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment