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.9 KB
|
Rev | Line | |
---|
[d24f17c] | 1 | export default {
|
---|
| 2 | "code[class*=\"language-\"]": {
|
---|
| 3 | "color": "#3c3836",
|
---|
| 4 | "fontFamily": "Consolas, Monaco, \"Andale Mono\", monospace",
|
---|
| 5 | "direction": "ltr",
|
---|
| 6 | "textAlign": "left",
|
---|
| 7 | "whiteSpace": "pre",
|
---|
| 8 | "wordSpacing": "normal",
|
---|
| 9 | "wordBreak": "normal",
|
---|
| 10 | "lineHeight": "1.5",
|
---|
| 11 | "MozTabSize": "4",
|
---|
| 12 | "OTabSize": "4",
|
---|
| 13 | "tabSize": "4",
|
---|
| 14 | "WebkitHyphens": "none",
|
---|
| 15 | "MozHyphens": "none",
|
---|
| 16 | "msHyphens": "none",
|
---|
| 17 | "hyphens": "none"
|
---|
| 18 | },
|
---|
| 19 | "pre[class*=\"language-\"]": {
|
---|
| 20 | "color": "#3c3836",
|
---|
| 21 | "fontFamily": "Consolas, Monaco, \"Andale Mono\", monospace",
|
---|
| 22 | "direction": "ltr",
|
---|
| 23 | "textAlign": "left",
|
---|
| 24 | "whiteSpace": "pre",
|
---|
| 25 | "wordSpacing": "normal",
|
---|
| 26 | "wordBreak": "normal",
|
---|
| 27 | "lineHeight": "1.5",
|
---|
| 28 | "MozTabSize": "4",
|
---|
| 29 | "OTabSize": "4",
|
---|
| 30 | "tabSize": "4",
|
---|
| 31 | "WebkitHyphens": "none",
|
---|
| 32 | "MozHyphens": "none",
|
---|
| 33 | "msHyphens": "none",
|
---|
| 34 | "hyphens": "none",
|
---|
| 35 | "padding": "1em",
|
---|
| 36 | "margin": "0.5em 0",
|
---|
| 37 | "overflow": "auto",
|
---|
| 38 | "background": "#f9f5d7"
|
---|
| 39 | },
|
---|
| 40 | "pre[class*=\"language-\"]::-moz-selection": {
|
---|
| 41 | "color": "#282828",
|
---|
| 42 | "background": "#a89984"
|
---|
| 43 | },
|
---|
| 44 | "pre[class*=\"language-\"] ::-moz-selection": {
|
---|
| 45 | "color": "#282828",
|
---|
| 46 | "background": "#a89984"
|
---|
| 47 | },
|
---|
| 48 | "code[class*=\"language-\"]::-moz-selection": {
|
---|
| 49 | "color": "#282828",
|
---|
| 50 | "background": "#a89984"
|
---|
| 51 | },
|
---|
| 52 | "code[class*=\"language-\"] ::-moz-selection": {
|
---|
| 53 | "color": "#282828",
|
---|
| 54 | "background": "#a89984"
|
---|
| 55 | },
|
---|
| 56 | "pre[class*=\"language-\"]::selection": {
|
---|
| 57 | "color": "#282828",
|
---|
| 58 | "background": "#a89984"
|
---|
| 59 | },
|
---|
| 60 | "pre[class*=\"language-\"] ::selection": {
|
---|
| 61 | "color": "#282828",
|
---|
| 62 | "background": "#a89984"
|
---|
| 63 | },
|
---|
| 64 | "code[class*=\"language-\"]::selection": {
|
---|
| 65 | "color": "#282828",
|
---|
| 66 | "background": "#a89984"
|
---|
| 67 | },
|
---|
| 68 | "code[class*=\"language-\"] ::selection": {
|
---|
| 69 | "color": "#282828",
|
---|
| 70 | "background": "#a89984"
|
---|
| 71 | },
|
---|
| 72 | ":not(pre) > code[class*=\"language-\"]": {
|
---|
| 73 | "background": "#f9f5d7",
|
---|
| 74 | "padding": "0.1em",
|
---|
| 75 | "borderRadius": "0.3em"
|
---|
| 76 | },
|
---|
| 77 | "comment": {
|
---|
| 78 | "color": "#7c6f64"
|
---|
| 79 | },
|
---|
| 80 | "prolog": {
|
---|
| 81 | "color": "#7c6f64"
|
---|
| 82 | },
|
---|
| 83 | "cdata": {
|
---|
| 84 | "color": "#7c6f64"
|
---|
| 85 | },
|
---|
| 86 | "delimiter": {
|
---|
| 87 | "color": "#9d0006"
|
---|
| 88 | },
|
---|
| 89 | "boolean": {
|
---|
| 90 | "color": "#9d0006"
|
---|
| 91 | },
|
---|
| 92 | "keyword": {
|
---|
| 93 | "color": "#9d0006"
|
---|
| 94 | },
|
---|
| 95 | "selector": {
|
---|
| 96 | "color": "#9d0006"
|
---|
| 97 | },
|
---|
| 98 | "important": {
|
---|
| 99 | "color": "#9d0006"
|
---|
| 100 | },
|
---|
| 101 | "atrule": {
|
---|
| 102 | "color": "#9d0006"
|
---|
| 103 | },
|
---|
| 104 | "operator": {
|
---|
| 105 | "color": "#7c6f64"
|
---|
| 106 | },
|
---|
| 107 | "punctuation": {
|
---|
| 108 | "color": "#7c6f64"
|
---|
| 109 | },
|
---|
| 110 | "attr-name": {
|
---|
| 111 | "color": "#7c6f64"
|
---|
| 112 | },
|
---|
| 113 | "tag": {
|
---|
| 114 | "color": "#b57614"
|
---|
| 115 | },
|
---|
| 116 | "tag.punctuation": {
|
---|
| 117 | "color": "#b57614"
|
---|
| 118 | },
|
---|
| 119 | "doctype": {
|
---|
| 120 | "color": "#b57614"
|
---|
| 121 | },
|
---|
| 122 | "builtin": {
|
---|
| 123 | "color": "#b57614"
|
---|
| 124 | },
|
---|
| 125 | "entity": {
|
---|
| 126 | "color": "#8f3f71"
|
---|
| 127 | },
|
---|
| 128 | "number": {
|
---|
| 129 | "color": "#8f3f71"
|
---|
| 130 | },
|
---|
| 131 | "symbol": {
|
---|
| 132 | "color": "#8f3f71"
|
---|
| 133 | },
|
---|
| 134 | "property": {
|
---|
| 135 | "color": "#9d0006"
|
---|
| 136 | },
|
---|
| 137 | "constant": {
|
---|
| 138 | "color": "#9d0006"
|
---|
| 139 | },
|
---|
| 140 | "variable": {
|
---|
| 141 | "color": "#9d0006"
|
---|
| 142 | },
|
---|
| 143 | "string": {
|
---|
| 144 | "color": "#797403"
|
---|
| 145 | },
|
---|
| 146 | "char": {
|
---|
| 147 | "color": "#797403"
|
---|
| 148 | },
|
---|
| 149 | "attr-value": {
|
---|
| 150 | "color": "#7c6f64"
|
---|
| 151 | },
|
---|
| 152 | "attr-value.punctuation": {
|
---|
| 153 | "color": "#7c6f64"
|
---|
| 154 | },
|
---|
| 155 | "url": {
|
---|
| 156 | "color": "#797403",
|
---|
| 157 | "textDecoration": "underline"
|
---|
| 158 | },
|
---|
| 159 | "function": {
|
---|
| 160 | "color": "#b57614"
|
---|
| 161 | },
|
---|
| 162 | "regex": {
|
---|
| 163 | "background": "#797403"
|
---|
| 164 | },
|
---|
| 165 | "bold": {
|
---|
| 166 | "fontWeight": "bold"
|
---|
| 167 | },
|
---|
| 168 | "italic": {
|
---|
| 169 | "fontStyle": "italic"
|
---|
| 170 | },
|
---|
| 171 | "inserted": {
|
---|
| 172 | "background": "#7c6f64"
|
---|
| 173 | },
|
---|
| 174 | "deleted": {
|
---|
| 175 | "background": "#9d0006"
|
---|
| 176 | }
|
---|
| 177 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.