Last active
December 17, 2024 09:09
-
-
Save thevillagehacker/c6ecd96e920f23b292fba60572582ee1 to your computer and use it in GitHub Desktop.
sublime color scheme custom config for markdown
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
{ | |
"variables": | |
{ | |
}, | |
"globals": | |
{ | |
"foreground": "#ffffff", | |
"background": "#010409", | |
"caret": "#F8F8F0", | |
"invisibles": "#31333D", | |
"line_highlight": "#2d3036", | |
"selection": "#484A58", | |
"inactive_selection": "#4a2c1a", | |
"find_highlight_foreground": "#ffffff", | |
"find_highlight": "#00186d" | |
}, | |
"rules": | |
[ | |
{ | |
"name": "Markdown: Block code", | |
"scope": "markup.raw.block, markup.raw.code-fence", | |
"foreground": "#fff", | |
"background": "#191c1f" | |
}, | |
{ | |
"name": "Markdown: Inline code", | |
"scope": "markup.raw.inline", | |
"foreground": "#fff", | |
"background": "#191c1f" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment