source: node_modules/react-syntax-highlighter/src/styles/prism/nord.js

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.2 KB
RevLine 
[d24f17c]1export default {
2 "code[class*=\"language-\"]": {
3 "color": "#f8f8f2",
4 "background": "none",
5 "fontFamily": "\"Fira Code\", 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": "#2E3440",
23 "fontFamily": "\"Fira Code\", 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": ".5em 0",
39 "overflow": "auto",
40 "borderRadius": "0.3em"
41 },
42 ":not(pre) > code[class*=\"language-\"]": {
43 "background": "#2E3440",
44 "padding": ".1em",
45 "borderRadius": ".3em",
46 "whiteSpace": "normal"
47 },
48 "comment": {
49 "color": "#636f88"
50 },
51 "prolog": {
52 "color": "#636f88"
53 },
54 "doctype": {
55 "color": "#636f88"
56 },
57 "cdata": {
58 "color": "#636f88"
59 },
60 "punctuation": {
61 "color": "#81A1C1"
62 },
63 ".namespace": {
64 "Opacity": ".7"
65 },
66 "property": {
67 "color": "#81A1C1"
68 },
69 "tag": {
70 "color": "#81A1C1"
71 },
72 "constant": {
73 "color": "#81A1C1"
74 },
75 "symbol": {
76 "color": "#81A1C1"
77 },
78 "deleted": {
79 "color": "#81A1C1"
80 },
81 "number": {
82 "color": "#B48EAD"
83 },
84 "boolean": {
85 "color": "#81A1C1"
86 },
87 "selector": {
88 "color": "#A3BE8C"
89 },
90 "attr-name": {
91 "color": "#A3BE8C"
92 },
93 "string": {
94 "color": "#A3BE8C"
95 },
96 "char": {
97 "color": "#A3BE8C"
98 },
99 "builtin": {
100 "color": "#A3BE8C"
101 },
102 "inserted": {
103 "color": "#A3BE8C"
104 },
105 "operator": {
106 "color": "#81A1C1"
107 },
108 "entity": {
109 "color": "#81A1C1",
110 "cursor": "help"
111 },
112 "url": {
113 "color": "#81A1C1"
114 },
115 ".language-css .token.string": {
116 "color": "#81A1C1"
117 },
118 ".style .token.string": {
119 "color": "#81A1C1"
120 },
121 "variable": {
122 "color": "#81A1C1"
123 },
124 "atrule": {
125 "color": "#88C0D0"
126 },
127 "attr-value": {
128 "color": "#88C0D0"
129 },
130 "function": {
131 "color": "#88C0D0"
132 },
133 "class-name": {
134 "color": "#88C0D0"
135 },
136 "keyword": {
137 "color": "#81A1C1"
138 },
139 "regex": {
140 "color": "#EBCB8B"
141 },
142 "important": {
143 "color": "#EBCB8B",
144 "fontWeight": "bold"
145 },
146 "bold": {
147 "fontWeight": "bold"
148 },
149 "italic": {
150 "fontStyle": "italic"
151 }
152}
Note: See TracBrowser for help on using the repository browser.