Skip to content

Commit

Permalink
fix default themes for markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
kieferrm committed Jun 14, 2016
1 parent 9b4a35f commit c8cfe69
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 6 deletions.
26 changes: 23 additions & 3 deletions extensions/theme-defaults/themes/dark_vs.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,19 +101,21 @@
{
"scope": "markup.bold",
"settings": {
"fontStyle": "bold"
"fontStyle": "bold",
"foreground": "#569cd6"
}
},
{
"scope": "markup.heading",
"settings": {
"foreground": "#6796e6"
"foreground": "#569cd6"
}
},
{
"scope": "markup.italic",
"settings": {
"fontStyle": "italic"
"fontStyle": "italic",
"foreground": "#569cd6"
}
},
{
Expand All @@ -133,6 +135,24 @@
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": ["markup.punctuation.quote", "markup.punctuation.list"],
"settings": {
"foreground": "#6796e6"
}
},
{
"scope": ["markup.quote", "markup.list"],
"settings": {
"foreground": "#6796e6"
}
},
{
"scope": "markup.inline.raw",
"settings": {
"foreground": "#ce9178"
}
},
{
"scope": "meta.selector",
Expand Down
6 changes: 6 additions & 0 deletions extensions/theme-defaults/themes/light_plus.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@
"settings": {
"foreground": "#001080"
}
},
{
"scope": ["markup.quote", "markup.list"],
"settings": {
"foreground": "#0451a5"
}
}
]
}
27 changes: 24 additions & 3 deletions extensions/theme-defaults/themes/light_vs.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,19 +91,22 @@
{
"scope": "markup.bold",
"settings": {
"fontStyle": "bold"
"fontStyle": "bold",
"foreground": "#000080"

}
},
{
"scope": "markup.heading",
"settings": {
"foreground": "#000080"
"foreground": "#800000"
}
},
{
"scope": "markup.italic",
"settings": {
"fontStyle": "italic"
"fontStyle": "italic",
"foreground": "#000080"
}
},
{
Expand All @@ -124,6 +127,24 @@
"foreground": "#0451a5"
}
},
{
"scope": ["markup.punctuation.quote", "markup.punctuation.list"],
"settings": {
"foreground": "#0451a5"
}
},
{
"scope": ["markup.quote", "markup.list"],
"settings": {
"foreground": "#000000"
}
},
{
"scope": "markup.inline.raw",
"settings": {
"foreground": "#800000"
}
},
{
"scope": "meta.selector",
"settings": {
Expand Down

0 comments on commit c8cfe69

Please sign in to comment.