main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
3.1 KB
|
Rev | Line | |
---|
[d24f17c] | 1 | export default {
|
---|
| 2 | "code[class*=\"language-\"]": {
|
---|
| 3 | "color": "#f8f8f2",
|
---|
| 4 | "background": "none",
|
---|
| 5 | "fontFamily": "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
|
---|
| 6 | "textAlign": "left",
|
---|
| 7 | "whiteSpace": "pre",
|
---|
| 8 | "wordSpacing": "normal",
|
---|
| 9 | "wordBreak": "normal",
|
---|
| 10 | "wordWrap": "normal",
|
---|
| 11 | "lineHeight": "1.5",
|
---|
| 12 | "MozTabSize": "4",
|
---|
| 13 | "OTabSize": "4",
|
---|
| 14 | "tabSize": "4",
|
---|
| 15 | "WebkitHyphens": "none",
|
---|
| 16 | "MozHyphens": "none",
|
---|
| 17 | "msHyphens": "none",
|
---|
| 18 | "hyphens": "none"
|
---|
| 19 | },
|
---|
| 20 | "pre[class*=\"language-\"]": {
|
---|
| 21 | "color": "#f8f8f2",
|
---|
| 22 | "background": "#2b2b2b",
|
---|
| 23 | "fontFamily": "Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace",
|
---|
| 24 | "textAlign": "left",
|
---|
| 25 | "whiteSpace": "pre",
|
---|
| 26 | "wordSpacing": "normal",
|
---|
| 27 | "wordBreak": "normal",
|
---|
| 28 | "wordWrap": "normal",
|
---|
| 29 | "lineHeight": "1.5",
|
---|
| 30 | "MozTabSize": "4",
|
---|
| 31 | "OTabSize": "4",
|
---|
| 32 | "tabSize": "4",
|
---|
| 33 | "WebkitHyphens": "none",
|
---|
| 34 | "MozHyphens": "none",
|
---|
| 35 | "msHyphens": "none",
|
---|
| 36 | "hyphens": "none",
|
---|
| 37 | "padding": "1em",
|
---|
| 38 | "margin": "0.5em 0",
|
---|
| 39 | "overflow": "auto",
|
---|
| 40 | "borderRadius": "0.3em"
|
---|
| 41 | },
|
---|
| 42 | ":not(pre) > code[class*=\"language-\"]": {
|
---|
| 43 | "background": "#2b2b2b",
|
---|
| 44 | "padding": "0.1em",
|
---|
| 45 | "borderRadius": "0.3em",
|
---|
| 46 | "whiteSpace": "normal"
|
---|
| 47 | },
|
---|
| 48 | "comment": {
|
---|
| 49 | "color": "#d4d0ab"
|
---|
| 50 | },
|
---|
| 51 | "prolog": {
|
---|
| 52 | "color": "#d4d0ab"
|
---|
| 53 | },
|
---|
| 54 | "doctype": {
|
---|
| 55 | "color": "#d4d0ab"
|
---|
| 56 | },
|
---|
| 57 | "cdata": {
|
---|
| 58 | "color": "#d4d0ab"
|
---|
| 59 | },
|
---|
| 60 | "punctuation": {
|
---|
| 61 | "color": "#fefefe"
|
---|
| 62 | },
|
---|
| 63 | "property": {
|
---|
| 64 | "color": "#ffa07a"
|
---|
| 65 | },
|
---|
| 66 | "tag": {
|
---|
| 67 | "color": "#ffa07a"
|
---|
| 68 | },
|
---|
| 69 | "constant": {
|
---|
| 70 | "color": "#ffa07a"
|
---|
| 71 | },
|
---|
| 72 | "symbol": {
|
---|
| 73 | "color": "#ffa07a"
|
---|
| 74 | },
|
---|
| 75 | "deleted": {
|
---|
| 76 | "color": "#ffa07a"
|
---|
| 77 | },
|
---|
| 78 | "boolean": {
|
---|
| 79 | "color": "#00e0e0"
|
---|
| 80 | },
|
---|
| 81 | "number": {
|
---|
| 82 | "color": "#00e0e0"
|
---|
| 83 | },
|
---|
| 84 | "selector": {
|
---|
| 85 | "color": "#abe338"
|
---|
| 86 | },
|
---|
| 87 | "attr-name": {
|
---|
| 88 | "color": "#abe338"
|
---|
| 89 | },
|
---|
| 90 | "string": {
|
---|
| 91 | "color": "#abe338"
|
---|
| 92 | },
|
---|
| 93 | "char": {
|
---|
| 94 | "color": "#abe338"
|
---|
| 95 | },
|
---|
| 96 | "builtin": {
|
---|
| 97 | "color": "#abe338"
|
---|
| 98 | },
|
---|
| 99 | "inserted": {
|
---|
| 100 | "color": "#abe338"
|
---|
| 101 | },
|
---|
| 102 | "operator": {
|
---|
| 103 | "color": "#00e0e0"
|
---|
| 104 | },
|
---|
| 105 | "entity": {
|
---|
| 106 | "color": "#00e0e0",
|
---|
| 107 | "cursor": "help"
|
---|
| 108 | },
|
---|
| 109 | "url": {
|
---|
| 110 | "color": "#00e0e0"
|
---|
| 111 | },
|
---|
| 112 | ".language-css .token.string": {
|
---|
| 113 | "color": "#00e0e0"
|
---|
| 114 | },
|
---|
| 115 | ".style .token.string": {
|
---|
| 116 | "color": "#00e0e0"
|
---|
| 117 | },
|
---|
| 118 | "variable": {
|
---|
| 119 | "color": "#00e0e0"
|
---|
| 120 | },
|
---|
| 121 | "atrule": {
|
---|
| 122 | "color": "#ffd700"
|
---|
| 123 | },
|
---|
| 124 | "attr-value": {
|
---|
| 125 | "color": "#ffd700"
|
---|
| 126 | },
|
---|
| 127 | "function": {
|
---|
| 128 | "color": "#ffd700"
|
---|
| 129 | },
|
---|
| 130 | "keyword": {
|
---|
| 131 | "color": "#00e0e0"
|
---|
| 132 | },
|
---|
| 133 | "regex": {
|
---|
| 134 | "color": "#ffd700"
|
---|
| 135 | },
|
---|
| 136 | "important": {
|
---|
| 137 | "color": "#ffd700",
|
---|
| 138 | "fontWeight": "bold"
|
---|
| 139 | },
|
---|
| 140 | "bold": {
|
---|
| 141 | "fontWeight": "bold"
|
---|
| 142 | },
|
---|
| 143 | "italic": {
|
---|
| 144 | "fontStyle": "italic"
|
---|
| 145 | }
|
---|
| 146 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.