Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 41 additions & 6 deletions themes/vsDark.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

var theme /*: PrismTheme */ = {
plain: {
color: "#D4D4D4",
color: "#9CDCFE",
backgroundColor: "#1E1E1E"
},
styles: [
Expand All @@ -22,7 +22,7 @@ var theme /*: PrismTheme */ = {
}
},
{
types: ["builtin", "tag", "changed", "keyword"],
types: ["builtin", "changed", "keyword"],
style: {
color: "rgb(86, 156, 214)"
}
Expand All @@ -46,7 +46,7 @@ var theme /*: PrismTheme */ = {
}
},
{
types: ["deleted", "string"],
types: ["deleted", "string", "attr-value"],
style: {
color: "rgb(206, 145, 120)"
}
Expand All @@ -58,16 +58,51 @@ var theme /*: PrismTheme */ = {
}
},
{
types: ["punctuation"],
// Fix tag color
types: ["tag"],
style: {
color: "rgb(78, 201, 176)"
}
},
{
// Fix tag color for HTML
types: ["tag"],
languages: ["markup"],
style: {
color: "rgb(128, 128, 128)"
color: "rgb(86, 156, 214)"
}
},
{
types: ["operator"],
types: ["punctuation", "operator"],
style: {
color: "rgb(212, 212, 212)"
}
},
{
// Fix punctuation color for HTML
types: ["punctuation"],
languages: ["markup"],
style: {
color: "#808080"
}
},
{
types: ["function"],
style: {
color: "rgb(220, 220, 170)"
}
},
{
types: ["class-name"],
style: {
color: "rgb(78, 201, 176)"
}
},
{
types: ["char"],
style: {
color: "rgb(209, 105, 105)"
}
}
]
};
Expand Down
87 changes: 0 additions & 87 deletions themes/vsDarkPlus.js

This file was deleted.