improve string literal highlighting color contrast

This commit is contained in:
Konstantin Schaper
2020-10-21 19:42:43 +02:00
parent 0ed7769686
commit a9ed357f75
2 changed files with 7 additions and 7 deletions

View File

@@ -177,7 +177,7 @@ pre[class*="language-"] {
.token.builtin,
.token.inserted {
color: #cca201;
color: #005f9a;
}

View File

@@ -130,22 +130,22 @@ export default {
color: "#2c99c7",
},
selector: {
color: "#cca201",
color: "#005f9a",
},
"attr-name": {
color: "#cca201",
color: "#005f9a",
},
string: {
color: "#cca201",
color: "#005f9a",
},
char: {
color: "#cca201",
color: "#005f9a",
},
builtin: {
color: "#cca201",
color: "#005f9a",
},
inserted: {
color: "#cca201",
color: "#005f9a",
},
operator: {
color: "#686868",