Skip to content

Commit 5a90be8

Browse files
committed
Improve Monokai theme for markdown files
- properly render links in lists - make headings bold - render quotes in italics and change color - render bold text in bold - render italic text in italic
1 parent c0d41ff commit 5a90be8

File tree

1 file changed

+60
-1
lines changed

1 file changed

+60
-1
lines changed

extensions/theme-monokai/themes/monokai-color-theme.json

Lines changed: 60 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,66 @@
382382
"name": "Markup Setext Header",
383383
"scope": "markup.heading.setext",
384384
"settings": {
385-
"fontStyle": "",
385+
"foreground": "#A6E22E",
386+
"fontStyle": "bold"
387+
}
388+
},
389+
{
390+
"name": "Markup Headings",
391+
"scope": "markup.heading.markdown",
392+
"settings": {
393+
"fontStyle": "bold"
394+
}
395+
},
396+
{
397+
"name": "Markdown Quote",
398+
"scope": "markup.quote.markdown",
399+
"settings": {
400+
"fontStyle": "italic",
401+
"foreground": "#75715E"
402+
}
403+
},
404+
{
405+
"name": "Markdown Bold",
406+
"scope": "markup.bold.markdown",
407+
"settings": {
408+
"fontStyle": "bold"
409+
}
410+
},
411+
{
412+
"name": "Markdown Link Title/Description",
413+
"scope": "string.other.link.title.markdown,string.other.link.description.markdown",
414+
"settings": {
415+
"foreground": "#AE81FF"
416+
}
417+
},
418+
{
419+
"name": "Markdown Underline Link/Image",
420+
"scope": "markup.underline.link.markdown,markup.underline.link.image.markdown",
421+
"settings": {
422+
"foreground": "#E6DB74"
423+
}
424+
},
425+
{
426+
"name": "Markdown Emphasis",
427+
"scope": "markup.italic.markdown",
428+
"settings": {
429+
"fontStyle": "italic"
430+
}
431+
},
432+
{
433+
"name": "Markdown Punctuation Definition Link",
434+
"scope": "markup.list.unnumbered.markdown, markup.list.numbered.markdown",
435+
"settings": {
436+
"foreground": "#f8f8f2"
437+
}
438+
},
439+
{
440+
"name": "Markdown List Punctuation",
441+
"scope": [
442+
"punctuation.definition.list.begin.markdown"
443+
],
444+
"settings": {
386445
"foreground": "#A6E22E"
387446
}
388447
},

0 commit comments

Comments
 (0)