@live-codes/browser-compilers 0.17.1 → 0.18.0

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.
@@ -0,0 +1,135 @@
1
+ code[class*="language-"],
2
+ pre[class*="language-"] {
3
+ color: #cad3f5;
4
+ }
5
+
6
+ :not(pre) > code[class*="language-"],
7
+ pre[class*="language-"] {
8
+ background: #1e2030;
9
+ }
10
+
11
+ /* https://prismjs.com/tokens.html */
12
+
13
+ .token.keyword {
14
+ color: #c6a0f6;
15
+ }
16
+
17
+ .token.builtin {
18
+ color: #ed8796;
19
+ }
20
+
21
+ .token.class-name {
22
+ color: #eed49f;
23
+ }
24
+
25
+ .token.function {
26
+ color: #8aadf4;
27
+ }
28
+
29
+ .token.boolean,
30
+ .token.number {
31
+ color: #f5a97f;
32
+ }
33
+
34
+ .token.string,
35
+ .token.char {
36
+ color: #a6da95;
37
+ }
38
+
39
+ .token.symbol {
40
+ color: #eed49f;
41
+ }
42
+
43
+ .token.regex {
44
+ color: #f5bde6;
45
+ }
46
+
47
+ .token.url {
48
+ color: #a6da95;
49
+ }
50
+
51
+ .token.operator {
52
+ color: #91d7e3;
53
+ }
54
+
55
+ .token.variable {
56
+ color: #cad3f5;
57
+ }
58
+
59
+ .token.constant {
60
+ color: #f5a97f;
61
+ }
62
+
63
+ .token.property {
64
+ color: #8aadf4;
65
+ }
66
+
67
+ .token.punctuation {
68
+ color: #939ab7;
69
+ }
70
+
71
+ .token.important {
72
+ color: #c6a0f6;
73
+ }
74
+
75
+ .token.comment {
76
+ color: #939ab7;
77
+ }
78
+
79
+ .token.tag {
80
+ color: #8aadf4;
81
+ }
82
+
83
+ .token.attr-name {
84
+ color: #eed49f;
85
+ }
86
+
87
+ .token.attr-value {
88
+ color: #a6da95;
89
+ }
90
+
91
+ .token.namespace {
92
+ color: #eed49f;
93
+ }
94
+
95
+ .token.prolog,
96
+ .token.doctype {
97
+ color: #c6a0f6;
98
+ }
99
+
100
+ .token.cdata {
101
+ color: #8bd5ca;
102
+ }
103
+
104
+ .token.entity {
105
+ color: #ed8796;
106
+ }
107
+
108
+ .token.atrule {
109
+ color: #c6a0f6;
110
+ }
111
+
112
+ .token.selector {
113
+ color: #8aadf4;
114
+ }
115
+
116
+ /* Diff */
117
+
118
+ .token.deleted {
119
+ color: #ed8796;
120
+ }
121
+
122
+ .token.inserted {
123
+ color: #a6da95
124
+ }
125
+
126
+ /* Other */
127
+
128
+ .token.important,
129
+ .token.bold {
130
+ font-weight: bold;
131
+ }
132
+ .token.italic {
133
+ font-style: italic;
134
+ }
135
+
@@ -0,0 +1,135 @@
1
+ code[class*="language-"],
2
+ pre[class*="language-"] {
3
+ color: #cdd6f4;
4
+ }
5
+
6
+ :not(pre) > code[class*="language-"],
7
+ pre[class*="language-"] {
8
+ background: #181825;
9
+ }
10
+
11
+ /* https://prismjs.com/tokens.html */
12
+
13
+ .token.keyword {
14
+ color: #cba6f7;
15
+ }
16
+
17
+ .token.builtin {
18
+ color: #f38ba8;
19
+ }
20
+
21
+ .token.class-name {
22
+ color: #f9e2af;
23
+ }
24
+
25
+ .token.function {
26
+ color: #89b4fa;
27
+ }
28
+
29
+ .token.boolean,
30
+ .token.number {
31
+ color: #fab387;
32
+ }
33
+
34
+ .token.string,
35
+ .token.char {
36
+ color: #a6e3a1;
37
+ }
38
+
39
+ .token.symbol {
40
+ color: #f9e2af;
41
+ }
42
+
43
+ .token.regex {
44
+ color: #f5c2e7;
45
+ }
46
+
47
+ .token.url {
48
+ color: #a6e3a1;
49
+ }
50
+
51
+ .token.operator {
52
+ color: #89dceb;
53
+ }
54
+
55
+ .token.variable {
56
+ color: #cdd6f4;
57
+ }
58
+
59
+ .token.constant {
60
+ color: #fab387;
61
+ }
62
+
63
+ .token.property {
64
+ color: #89b4fa;
65
+ }
66
+
67
+ .token.punctuation {
68
+ color: #9399b2;
69
+ }
70
+
71
+ .token.important {
72
+ color: #cba6f7;
73
+ }
74
+
75
+ .token.comment {
76
+ color: #9399b2;
77
+ }
78
+
79
+ .token.tag {
80
+ color: #89b4fa;
81
+ }
82
+
83
+ .token.attr-name {
84
+ color: #f9e2af;
85
+ }
86
+
87
+ .token.attr-value {
88
+ color: #a6e3a1;
89
+ }
90
+
91
+ .token.namespace {
92
+ color: #f9e2af;
93
+ }
94
+
95
+ .token.prolog,
96
+ .token.doctype {
97
+ color: #cba6f7;
98
+ }
99
+
100
+ .token.cdata {
101
+ color: #94e2d5;
102
+ }
103
+
104
+ .token.entity {
105
+ color: #f38ba8;
106
+ }
107
+
108
+ .token.atrule {
109
+ color: #cba6f7;
110
+ }
111
+
112
+ .token.selector {
113
+ color: #89b4fa;
114
+ }
115
+
116
+ /* Diff */
117
+
118
+ .token.deleted {
119
+ color: #f38ba8;
120
+ }
121
+
122
+ .token.inserted {
123
+ color: #a6e3a1
124
+ }
125
+
126
+ /* Other */
127
+
128
+ .token.important,
129
+ .token.bold {
130
+ font-weight: bold;
131
+ }
132
+ .token.italic {
133
+ font-style: italic;
134
+ }
135
+
@@ -0,0 +1 @@
1
+ from https://github.com/catppuccin/prismjs