Skip to content

Instantly share code, notes, and snippets.

@thevillagehacker
Last active December 17, 2024 09:09
Show Gist options
  • Save thevillagehacker/c6ecd96e920f23b292fba60572582ee1 to your computer and use it in GitHub Desktop.
Save thevillagehacker/c6ecd96e920f23b292fba60572582ee1 to your computer and use it in GitHub Desktop.
sublime color scheme custom config for markdown
{
"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