File size: 1,527 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 |
code[class*="lang-"] {
color: #393a34;
direction: ltr;
text-align: left;
white-space: pre;
/* stylelint-disable-next-line declaration-property-unit-allowed-list */
line-height: 1.2em;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
code[class*="lang-"]::selection,
code[class*="lang-"] ::selection,
code[class*="lang-"]::-moz-selection,
code[class*="lang-"] ::-moz-selection {
background: #b3d4fc;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #969896;
font-style: italic;
}
.token.namespace {
opacity: 0.7;
}
.token.string {
color: #c397d8;
}
.token.attr-value {
color: #b9ca4a;
}
.token.url,
.token.symbol,
.token.number,
.token.boolean,
.token.constant,
.token.property,
.token.regex,
.token.variable,
.token.inserted {
color: #0086b3;
font-weight: 600;
}
.token.atrule,
.token.attr-name,
.language-autohotkey .token.selector {
color: #7aa6da;
font-weight: normal;
}
.token.function,
.token.deleted,
.language-autohotkey .token.tag {
color: #eaeaea;
}
.token.tag {
color: #e05600;
font-weight: 600;
}
.token.selector {
color: var(--studio-green);
}
.language-autohotkey .token.keyword {
color: #c397d8;
}
.token.important,
.token.function,
.token.bold {
font-weight: 600;
}
.token.italic {
font-style: italic;
}
.token.punctuation {
color: #868686;
}
.token.operator {
color: #a2a2a2;
}
.token.keyword {
color: #e7c547;
}
.token.entity,
.token.function {
color: #d54e53;
}
|