react-markdown-table-ts 0.1.5 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +2014 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +1997 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/types.d.ts +18 -5
- package/package.json +5 -2
- package/styles/prism-line-numbers.css +40 -0
- package/styles/prism.css +140 -0
- package/styles/themes/prism-coy.css +219 -0
- package/styles/themes/prism-dark.css +129 -0
- package/styles/themes/prism-funky.css +130 -0
- package/styles/themes/prism-okaidia.css +123 -0
- package/styles/themes/prism-solarizedlight.css +150 -0
- package/styles/themes/prism-tomorrow.css +122 -0
- package/styles/themes/prism.css +140 -0
@@ -0,0 +1,130 @@
|
|
1
|
+
/**
|
2
|
+
* prism.js Funky theme
|
3
|
+
* Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-the-gaps/
|
4
|
+
* @author Lea Verou
|
5
|
+
*/
|
6
|
+
|
7
|
+
code[class*="language-"],
|
8
|
+
pre[class*="language-"] {
|
9
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
10
|
+
font-size: 1em;
|
11
|
+
text-align: left;
|
12
|
+
white-space: pre;
|
13
|
+
word-spacing: normal;
|
14
|
+
word-break: normal;
|
15
|
+
word-wrap: normal;
|
16
|
+
line-height: 1.5;
|
17
|
+
|
18
|
+
-moz-tab-size: 4;
|
19
|
+
-o-tab-size: 4;
|
20
|
+
tab-size: 4;
|
21
|
+
|
22
|
+
-webkit-hyphens: none;
|
23
|
+
-moz-hyphens: none;
|
24
|
+
-ms-hyphens: none;
|
25
|
+
hyphens: none;
|
26
|
+
}
|
27
|
+
|
28
|
+
/* Code blocks */
|
29
|
+
pre[class*="language-"] {
|
30
|
+
padding: .4em .8em;
|
31
|
+
margin: .5em 0;
|
32
|
+
overflow: auto;
|
33
|
+
background: url('data:image/svg+xml;charset=utf-8,<svg%20version%3D"1.1"%20xmlns%3D"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg"%20width%3D"100"%20height%3D"100"%20fill%3D"rgba(0%2C0%2C0%2C.2)">%0D%0A<polygon%20points%3D"0%2C50%2050%2C0%200%2C0"%20%2F>%0D%0A<polygon%20points%3D"0%2C100%2050%2C100%20100%2C50%20100%2C0"%20%2F>%0D%0A<%2Fsvg>');
|
34
|
+
background-size: 1em 1em;
|
35
|
+
}
|
36
|
+
|
37
|
+
code[class*="language-"] {
|
38
|
+
background: black;
|
39
|
+
color: white;
|
40
|
+
box-shadow: -.3em 0 0 .3em black, .3em 0 0 .3em black;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* Inline code */
|
44
|
+
:not(pre) > code[class*="language-"] {
|
45
|
+
padding: .2em;
|
46
|
+
border-radius: .3em;
|
47
|
+
box-shadow: none;
|
48
|
+
white-space: normal;
|
49
|
+
}
|
50
|
+
|
51
|
+
.token.comment,
|
52
|
+
.token.prolog,
|
53
|
+
.token.doctype,
|
54
|
+
.token.cdata {
|
55
|
+
color: #aaa;
|
56
|
+
}
|
57
|
+
|
58
|
+
.token.punctuation {
|
59
|
+
color: #999;
|
60
|
+
}
|
61
|
+
|
62
|
+
.token.namespace {
|
63
|
+
opacity: .7;
|
64
|
+
}
|
65
|
+
|
66
|
+
.token.property,
|
67
|
+
.token.tag,
|
68
|
+
.token.boolean,
|
69
|
+
.token.number,
|
70
|
+
.token.constant,
|
71
|
+
.token.symbol {
|
72
|
+
color: #0cf;
|
73
|
+
}
|
74
|
+
|
75
|
+
.token.selector,
|
76
|
+
.token.attr-name,
|
77
|
+
.token.string,
|
78
|
+
.token.char,
|
79
|
+
.token.builtin {
|
80
|
+
color: yellow;
|
81
|
+
}
|
82
|
+
|
83
|
+
.token.operator,
|
84
|
+
.token.entity,
|
85
|
+
.token.url,
|
86
|
+
.language-css .token.string,
|
87
|
+
.token.variable,
|
88
|
+
.token.inserted {
|
89
|
+
color: yellowgreen;
|
90
|
+
}
|
91
|
+
|
92
|
+
.token.atrule,
|
93
|
+
.token.attr-value,
|
94
|
+
.token.keyword {
|
95
|
+
color: deeppink;
|
96
|
+
}
|
97
|
+
|
98
|
+
.token.regex,
|
99
|
+
.token.important {
|
100
|
+
color: orange;
|
101
|
+
}
|
102
|
+
|
103
|
+
.token.important,
|
104
|
+
.token.bold {
|
105
|
+
font-weight: bold;
|
106
|
+
}
|
107
|
+
.token.italic {
|
108
|
+
font-style: italic;
|
109
|
+
}
|
110
|
+
|
111
|
+
.token.entity {
|
112
|
+
cursor: help;
|
113
|
+
}
|
114
|
+
|
115
|
+
.token.deleted {
|
116
|
+
color: red;
|
117
|
+
}
|
118
|
+
|
119
|
+
/* Plugin styles: Diff Highlight */
|
120
|
+
pre.diff-highlight.diff-highlight > code .token.deleted:not(.prefix),
|
121
|
+
pre > code.diff-highlight.diff-highlight .token.deleted:not(.prefix) {
|
122
|
+
background-color: rgba(255, 0, 0, .3);
|
123
|
+
display: inline;
|
124
|
+
}
|
125
|
+
|
126
|
+
pre.diff-highlight.diff-highlight > code .token.inserted:not(.prefix),
|
127
|
+
pre > code.diff-highlight.diff-highlight .token.inserted:not(.prefix) {
|
128
|
+
background-color: rgba(0, 255, 128, .3);
|
129
|
+
display: inline;
|
130
|
+
}
|
@@ -0,0 +1,123 @@
|
|
1
|
+
/**
|
2
|
+
* okaidia theme for JavaScript, CSS and HTML
|
3
|
+
* Loosely based on Monokai textmate theme by http://www.monokai.nl/
|
4
|
+
* @author ocodia
|
5
|
+
*/
|
6
|
+
|
7
|
+
code[class*="language-"],
|
8
|
+
pre[class*="language-"] {
|
9
|
+
color: #f8f8f2;
|
10
|
+
background: none;
|
11
|
+
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
12
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
13
|
+
font-size: 1em;
|
14
|
+
text-align: left;
|
15
|
+
white-space: pre;
|
16
|
+
word-spacing: normal;
|
17
|
+
word-break: normal;
|
18
|
+
word-wrap: normal;
|
19
|
+
line-height: 1.5;
|
20
|
+
|
21
|
+
-moz-tab-size: 4;
|
22
|
+
-o-tab-size: 4;
|
23
|
+
tab-size: 4;
|
24
|
+
|
25
|
+
-webkit-hyphens: none;
|
26
|
+
-moz-hyphens: none;
|
27
|
+
-ms-hyphens: none;
|
28
|
+
hyphens: none;
|
29
|
+
}
|
30
|
+
|
31
|
+
/* Code blocks */
|
32
|
+
pre[class*="language-"] {
|
33
|
+
padding: 1em;
|
34
|
+
margin: .5em 0;
|
35
|
+
overflow: auto;
|
36
|
+
border-radius: 0.3em;
|
37
|
+
}
|
38
|
+
|
39
|
+
:not(pre) > code[class*="language-"],
|
40
|
+
pre[class*="language-"] {
|
41
|
+
background: #272822;
|
42
|
+
}
|
43
|
+
|
44
|
+
/* Inline code */
|
45
|
+
:not(pre) > code[class*="language-"] {
|
46
|
+
padding: .1em;
|
47
|
+
border-radius: .3em;
|
48
|
+
white-space: normal;
|
49
|
+
}
|
50
|
+
|
51
|
+
.token.comment,
|
52
|
+
.token.prolog,
|
53
|
+
.token.doctype,
|
54
|
+
.token.cdata {
|
55
|
+
color: #8292a2;
|
56
|
+
}
|
57
|
+
|
58
|
+
.token.punctuation {
|
59
|
+
color: #f8f8f2;
|
60
|
+
}
|
61
|
+
|
62
|
+
.token.namespace {
|
63
|
+
opacity: .7;
|
64
|
+
}
|
65
|
+
|
66
|
+
.token.property,
|
67
|
+
.token.tag,
|
68
|
+
.token.constant,
|
69
|
+
.token.symbol,
|
70
|
+
.token.deleted {
|
71
|
+
color: #f92672;
|
72
|
+
}
|
73
|
+
|
74
|
+
.token.boolean,
|
75
|
+
.token.number {
|
76
|
+
color: #ae81ff;
|
77
|
+
}
|
78
|
+
|
79
|
+
.token.selector,
|
80
|
+
.token.attr-name,
|
81
|
+
.token.string,
|
82
|
+
.token.char,
|
83
|
+
.token.builtin,
|
84
|
+
.token.inserted {
|
85
|
+
color: #a6e22e;
|
86
|
+
}
|
87
|
+
|
88
|
+
.token.operator,
|
89
|
+
.token.entity,
|
90
|
+
.token.url,
|
91
|
+
.language-css .token.string,
|
92
|
+
.style .token.string,
|
93
|
+
.token.variable {
|
94
|
+
color: #f8f8f2;
|
95
|
+
}
|
96
|
+
|
97
|
+
.token.atrule,
|
98
|
+
.token.attr-value,
|
99
|
+
.token.function,
|
100
|
+
.token.class-name {
|
101
|
+
color: #e6db74;
|
102
|
+
}
|
103
|
+
|
104
|
+
.token.keyword {
|
105
|
+
color: #66d9ef;
|
106
|
+
}
|
107
|
+
|
108
|
+
.token.regex,
|
109
|
+
.token.important {
|
110
|
+
color: #fd971f;
|
111
|
+
}
|
112
|
+
|
113
|
+
.token.important,
|
114
|
+
.token.bold {
|
115
|
+
font-weight: bold;
|
116
|
+
}
|
117
|
+
.token.italic {
|
118
|
+
font-style: italic;
|
119
|
+
}
|
120
|
+
|
121
|
+
.token.entity {
|
122
|
+
cursor: help;
|
123
|
+
}
|
@@ -0,0 +1,150 @@
|
|
1
|
+
/*
|
2
|
+
Solarized Color Schemes originally by Ethan Schoonover
|
3
|
+
http://ethanschoonover.com/solarized
|
4
|
+
|
5
|
+
Ported for PrismJS by Hector Matos
|
6
|
+
Website: https://krakendev.io
|
7
|
+
Twitter Handle: https://twitter.com/allonsykraken)
|
8
|
+
*/
|
9
|
+
|
10
|
+
/*
|
11
|
+
SOLARIZED HEX
|
12
|
+
--------- -------
|
13
|
+
base03 #002b36
|
14
|
+
base02 #073642
|
15
|
+
base01 #586e75
|
16
|
+
base00 #657b83
|
17
|
+
base0 #839496
|
18
|
+
base1 #93a1a1
|
19
|
+
base2 #eee8d5
|
20
|
+
base3 #fdf6e3
|
21
|
+
yellow #b58900
|
22
|
+
orange #cb4b16
|
23
|
+
red #dc322f
|
24
|
+
magenta #d33682
|
25
|
+
violet #6c71c4
|
26
|
+
blue #268bd2
|
27
|
+
cyan #2aa198
|
28
|
+
green #859900
|
29
|
+
*/
|
30
|
+
|
31
|
+
code[class*="language-"],
|
32
|
+
pre[class*="language-"] {
|
33
|
+
color: #657b83; /* base00 */
|
34
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
35
|
+
font-size: 1em;
|
36
|
+
text-align: left;
|
37
|
+
white-space: pre;
|
38
|
+
word-spacing: normal;
|
39
|
+
word-break: normal;
|
40
|
+
word-wrap: normal;
|
41
|
+
|
42
|
+
line-height: 1.5;
|
43
|
+
|
44
|
+
-moz-tab-size: 4;
|
45
|
+
-o-tab-size: 4;
|
46
|
+
tab-size: 4;
|
47
|
+
|
48
|
+
-webkit-hyphens: none;
|
49
|
+
-moz-hyphens: none;
|
50
|
+
-ms-hyphens: none;
|
51
|
+
hyphens: none;
|
52
|
+
}
|
53
|
+
|
54
|
+
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
55
|
+
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
56
|
+
background: #073642; /* base02 */
|
57
|
+
}
|
58
|
+
|
59
|
+
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
60
|
+
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
61
|
+
background: #073642; /* base02 */
|
62
|
+
}
|
63
|
+
|
64
|
+
/* Code blocks */
|
65
|
+
pre[class*="language-"] {
|
66
|
+
padding: 1em;
|
67
|
+
margin: .5em 0;
|
68
|
+
overflow: auto;
|
69
|
+
border-radius: 0.3em;
|
70
|
+
}
|
71
|
+
|
72
|
+
:not(pre) > code[class*="language-"],
|
73
|
+
pre[class*="language-"] {
|
74
|
+
background-color: #fdf6e3; /* base3 */
|
75
|
+
}
|
76
|
+
|
77
|
+
/* Inline code */
|
78
|
+
:not(pre) > code[class*="language-"] {
|
79
|
+
padding: .1em;
|
80
|
+
border-radius: .3em;
|
81
|
+
}
|
82
|
+
|
83
|
+
.token.comment,
|
84
|
+
.token.prolog,
|
85
|
+
.token.doctype,
|
86
|
+
.token.cdata {
|
87
|
+
color: #93a1a1; /* base1 */
|
88
|
+
}
|
89
|
+
|
90
|
+
.token.punctuation {
|
91
|
+
color: #586e75; /* base01 */
|
92
|
+
}
|
93
|
+
|
94
|
+
.token.namespace {
|
95
|
+
opacity: .7;
|
96
|
+
}
|
97
|
+
|
98
|
+
.token.property,
|
99
|
+
.token.tag,
|
100
|
+
.token.boolean,
|
101
|
+
.token.number,
|
102
|
+
.token.constant,
|
103
|
+
.token.symbol,
|
104
|
+
.token.deleted {
|
105
|
+
color: #268bd2; /* blue */
|
106
|
+
}
|
107
|
+
|
108
|
+
.token.selector,
|
109
|
+
.token.attr-name,
|
110
|
+
.token.string,
|
111
|
+
.token.char,
|
112
|
+
.token.builtin,
|
113
|
+
.token.url,
|
114
|
+
.token.inserted {
|
115
|
+
color: #2aa198; /* cyan */
|
116
|
+
}
|
117
|
+
|
118
|
+
.token.entity {
|
119
|
+
color: #657b83; /* base00 */
|
120
|
+
background: #eee8d5; /* base2 */
|
121
|
+
}
|
122
|
+
|
123
|
+
.token.atrule,
|
124
|
+
.token.attr-value,
|
125
|
+
.token.keyword {
|
126
|
+
color: #859900; /* green */
|
127
|
+
}
|
128
|
+
|
129
|
+
.token.function,
|
130
|
+
.token.class-name {
|
131
|
+
color: #b58900; /* yellow */
|
132
|
+
}
|
133
|
+
|
134
|
+
.token.regex,
|
135
|
+
.token.important,
|
136
|
+
.token.variable {
|
137
|
+
color: #cb4b16; /* orange */
|
138
|
+
}
|
139
|
+
|
140
|
+
.token.important,
|
141
|
+
.token.bold {
|
142
|
+
font-weight: bold;
|
143
|
+
}
|
144
|
+
.token.italic {
|
145
|
+
font-style: italic;
|
146
|
+
}
|
147
|
+
|
148
|
+
.token.entity {
|
149
|
+
cursor: help;
|
150
|
+
}
|
@@ -0,0 +1,122 @@
|
|
1
|
+
/**
|
2
|
+
* prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
|
3
|
+
* Based on https://github.com/chriskempson/tomorrow-theme
|
4
|
+
* @author Rose Pritchard
|
5
|
+
*/
|
6
|
+
|
7
|
+
code[class*="language-"],
|
8
|
+
pre[class*="language-"] {
|
9
|
+
color: #ccc;
|
10
|
+
background: none;
|
11
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
12
|
+
font-size: 1em;
|
13
|
+
text-align: left;
|
14
|
+
white-space: pre;
|
15
|
+
word-spacing: normal;
|
16
|
+
word-break: normal;
|
17
|
+
word-wrap: normal;
|
18
|
+
line-height: 1.5;
|
19
|
+
|
20
|
+
-moz-tab-size: 4;
|
21
|
+
-o-tab-size: 4;
|
22
|
+
tab-size: 4;
|
23
|
+
|
24
|
+
-webkit-hyphens: none;
|
25
|
+
-moz-hyphens: none;
|
26
|
+
-ms-hyphens: none;
|
27
|
+
hyphens: none;
|
28
|
+
|
29
|
+
}
|
30
|
+
|
31
|
+
/* Code blocks */
|
32
|
+
pre[class*="language-"] {
|
33
|
+
padding: 1em;
|
34
|
+
margin: .5em 0;
|
35
|
+
overflow: auto;
|
36
|
+
}
|
37
|
+
|
38
|
+
:not(pre) > code[class*="language-"],
|
39
|
+
pre[class*="language-"] {
|
40
|
+
background: #2d2d2d;
|
41
|
+
}
|
42
|
+
|
43
|
+
/* Inline code */
|
44
|
+
:not(pre) > code[class*="language-"] {
|
45
|
+
padding: .1em;
|
46
|
+
border-radius: .3em;
|
47
|
+
white-space: normal;
|
48
|
+
}
|
49
|
+
|
50
|
+
.token.comment,
|
51
|
+
.token.block-comment,
|
52
|
+
.token.prolog,
|
53
|
+
.token.doctype,
|
54
|
+
.token.cdata {
|
55
|
+
color: #999;
|
56
|
+
}
|
57
|
+
|
58
|
+
.token.punctuation {
|
59
|
+
color: #ccc;
|
60
|
+
}
|
61
|
+
|
62
|
+
.token.tag,
|
63
|
+
.token.attr-name,
|
64
|
+
.token.namespace,
|
65
|
+
.token.deleted {
|
66
|
+
color: #e2777a;
|
67
|
+
}
|
68
|
+
|
69
|
+
.token.function-name {
|
70
|
+
color: #6196cc;
|
71
|
+
}
|
72
|
+
|
73
|
+
.token.boolean,
|
74
|
+
.token.number,
|
75
|
+
.token.function {
|
76
|
+
color: #f08d49;
|
77
|
+
}
|
78
|
+
|
79
|
+
.token.property,
|
80
|
+
.token.class-name,
|
81
|
+
.token.constant,
|
82
|
+
.token.symbol {
|
83
|
+
color: #f8c555;
|
84
|
+
}
|
85
|
+
|
86
|
+
.token.selector,
|
87
|
+
.token.important,
|
88
|
+
.token.atrule,
|
89
|
+
.token.keyword,
|
90
|
+
.token.builtin {
|
91
|
+
color: #cc99cd;
|
92
|
+
}
|
93
|
+
|
94
|
+
.token.string,
|
95
|
+
.token.char,
|
96
|
+
.token.attr-value,
|
97
|
+
.token.regex,
|
98
|
+
.token.variable {
|
99
|
+
color: #7ec699;
|
100
|
+
}
|
101
|
+
|
102
|
+
.token.operator,
|
103
|
+
.token.entity,
|
104
|
+
.token.url {
|
105
|
+
color: #67cdcc;
|
106
|
+
}
|
107
|
+
|
108
|
+
.token.important,
|
109
|
+
.token.bold {
|
110
|
+
font-weight: bold;
|
111
|
+
}
|
112
|
+
.token.italic {
|
113
|
+
font-style: italic;
|
114
|
+
}
|
115
|
+
|
116
|
+
.token.entity {
|
117
|
+
cursor: help;
|
118
|
+
}
|
119
|
+
|
120
|
+
.token.inserted {
|
121
|
+
color: green;
|
122
|
+
}
|
@@ -0,0 +1,140 @@
|
|
1
|
+
/**
|
2
|
+
* prism.js default theme for JavaScript, CSS and HTML
|
3
|
+
* Based on dabblet (http://dabblet.com)
|
4
|
+
* @author Lea Verou
|
5
|
+
*/
|
6
|
+
|
7
|
+
code[class*="language-"],
|
8
|
+
pre[class*="language-"] {
|
9
|
+
color: black;
|
10
|
+
background: none;
|
11
|
+
text-shadow: 0 1px white;
|
12
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
13
|
+
font-size: 1em;
|
14
|
+
text-align: left;
|
15
|
+
white-space: pre;
|
16
|
+
word-spacing: normal;
|
17
|
+
word-break: normal;
|
18
|
+
word-wrap: normal;
|
19
|
+
line-height: 1.5;
|
20
|
+
|
21
|
+
-moz-tab-size: 4;
|
22
|
+
-o-tab-size: 4;
|
23
|
+
tab-size: 4;
|
24
|
+
|
25
|
+
-webkit-hyphens: none;
|
26
|
+
-moz-hyphens: none;
|
27
|
+
-ms-hyphens: none;
|
28
|
+
hyphens: none;
|
29
|
+
}
|
30
|
+
|
31
|
+
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
32
|
+
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
33
|
+
text-shadow: none;
|
34
|
+
background: #b3d4fc;
|
35
|
+
}
|
36
|
+
|
37
|
+
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
38
|
+
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
39
|
+
text-shadow: none;
|
40
|
+
background: #b3d4fc;
|
41
|
+
}
|
42
|
+
|
43
|
+
@media print {
|
44
|
+
code[class*="language-"],
|
45
|
+
pre[class*="language-"] {
|
46
|
+
text-shadow: none;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
/* Code blocks */
|
51
|
+
pre[class*="language-"] {
|
52
|
+
padding: 1em;
|
53
|
+
margin: .5em 0;
|
54
|
+
overflow: auto;
|
55
|
+
}
|
56
|
+
|
57
|
+
:not(pre) > code[class*="language-"],
|
58
|
+
pre[class*="language-"] {
|
59
|
+
background: #f5f2f0;
|
60
|
+
}
|
61
|
+
|
62
|
+
/* Inline code */
|
63
|
+
:not(pre) > code[class*="language-"] {
|
64
|
+
padding: .1em;
|
65
|
+
border-radius: .3em;
|
66
|
+
white-space: normal;
|
67
|
+
}
|
68
|
+
|
69
|
+
.token.comment,
|
70
|
+
.token.prolog,
|
71
|
+
.token.doctype,
|
72
|
+
.token.cdata {
|
73
|
+
color: slategray;
|
74
|
+
}
|
75
|
+
|
76
|
+
.token.punctuation {
|
77
|
+
color: #999;
|
78
|
+
}
|
79
|
+
|
80
|
+
.token.namespace {
|
81
|
+
opacity: .7;
|
82
|
+
}
|
83
|
+
|
84
|
+
.token.property,
|
85
|
+
.token.tag,
|
86
|
+
.token.boolean,
|
87
|
+
.token.number,
|
88
|
+
.token.constant,
|
89
|
+
.token.symbol,
|
90
|
+
.token.deleted {
|
91
|
+
color: #905;
|
92
|
+
}
|
93
|
+
|
94
|
+
.token.selector,
|
95
|
+
.token.attr-name,
|
96
|
+
.token.string,
|
97
|
+
.token.char,
|
98
|
+
.token.builtin,
|
99
|
+
.token.inserted {
|
100
|
+
color: #690;
|
101
|
+
}
|
102
|
+
|
103
|
+
.token.operator,
|
104
|
+
.token.entity,
|
105
|
+
.token.url,
|
106
|
+
.language-css .token.string,
|
107
|
+
.style .token.string {
|
108
|
+
color: #9a6e3a;
|
109
|
+
/* This background color was intended by the author of this theme. */
|
110
|
+
background: hsla(0, 0%, 100%, .5);
|
111
|
+
}
|
112
|
+
|
113
|
+
.token.atrule,
|
114
|
+
.token.attr-value,
|
115
|
+
.token.keyword {
|
116
|
+
color: #07a;
|
117
|
+
}
|
118
|
+
|
119
|
+
.token.function,
|
120
|
+
.token.class-name {
|
121
|
+
color: #DD4A68;
|
122
|
+
}
|
123
|
+
|
124
|
+
.token.regex,
|
125
|
+
.token.important,
|
126
|
+
.token.variable {
|
127
|
+
color: #e90;
|
128
|
+
}
|
129
|
+
|
130
|
+
.token.important,
|
131
|
+
.token.bold {
|
132
|
+
font-weight: bold;
|
133
|
+
}
|
134
|
+
.token.italic {
|
135
|
+
font-style: italic;
|
136
|
+
}
|
137
|
+
|
138
|
+
.token.entity {
|
139
|
+
cursor: help;
|
140
|
+
}
|