File tree Expand file tree Collapse file tree 2 files changed +159
-0
lines changed
PlaygroundPage/PlaygroundWithPreview Expand file tree Collapse file tree 2 files changed +159
-0
lines changed Original file line number Diff line number Diff line change
1
+ : global .cm-s-custom {
2
+ & .CodeMirror {
3
+ background : # 282c34 ;
4
+ color : # abb2bf ;
5
+ height : 75% ;
6
+ }
7
+
8
+ & div .CodeMirror-selected {
9
+ background : # 3e4451 ;
10
+ }
11
+
12
+ & .CodeMirror-line ::selection ,
13
+ & .CodeMirror-line > span ::selection ,
14
+ & .CodeMirror-line > span > span ::selection {
15
+ background : rgba (73 , 72 , 62 , 0.99 );
16
+ }
17
+
18
+ & .CodeMirror-line ::-moz-selection ,
19
+ & .CodeMirror-line > span ::-moz-selection ,
20
+ & .CodeMirror-line > span > span ::-moz-selection {
21
+ background : rgba (73 , 72 , 62 , 0.99 );
22
+ }
23
+
24
+ & .CodeMirror-gutters {
25
+ background : # 282c34 ;
26
+ border-right : 1px solid # 282c34 ;
27
+ }
28
+
29
+ & .CodeMirror-guttermarker {
30
+ color : white;
31
+ }
32
+
33
+ & .CodeMirror-guttermarker-subtle {
34
+ color : # d0d0d0 ;
35
+ }
36
+
37
+ & .CodeMirror-linenumber {
38
+ color : # 4b5363 ;
39
+ }
40
+
41
+ & .CodeMirror-cursor {
42
+ border-left : 1px solid # 528bff ;
43
+ }
44
+
45
+ & span .cm-comment {
46
+ color : # 667689 ;
47
+ }
48
+
49
+ & span .cm-atom {
50
+ color : # 64b6c3 ;
51
+ }
52
+
53
+ & span .cm-number {
54
+ color : # d19a66 ;
55
+ }
56
+
57
+ & span .cm-property ,
58
+ & span .cm-attribute {
59
+ color : # abb2bf ;
60
+ }
61
+
62
+ & span .cm-keyword {
63
+ color : # d86c74 ;
64
+ }
65
+
66
+ & span .cm-string {
67
+ color : # 98c379 ;
68
+ }
69
+
70
+ & span .cm-variable {
71
+ color : # abb2bf ;
72
+ }
73
+
74
+ & span .cm-variable-2 {
75
+ color : # c678dd ;
76
+ }
77
+
78
+ & span .cm-variable-3 {
79
+ color : # 64b6c3 ;
80
+ }
81
+
82
+ & span .cm-def {
83
+ color : # 6caff2 ;
84
+ }
85
+
86
+ & span .cm-bracket {
87
+ color : # abb2bf ;
88
+ }
89
+
90
+ & span .cm-tag {
91
+ color : # d86c74 ;
92
+ }
93
+
94
+ & span .cm-header {
95
+ color : # abb2bf ;
96
+ }
97
+
98
+ & span .cm-link {
99
+ color : # 98c379 ;
100
+ }
101
+
102
+ & span .cm-error {
103
+ background : # f92672 ;
104
+ color : red;
105
+ }
106
+
107
+ & .CodeMirror-activeline-background {
108
+ background : # 2c323b ;
109
+ }
110
+
111
+ & .CodeMirror-matchingbracket {
112
+ color : # abb2bf !important ;
113
+ text-decoration : underline;
114
+ }
115
+ }
Original file line number Diff line number Diff line change
1
+ export const componentList = [
2
+ {
3
+ name : 'Component 1' ,
4
+ } ,
5
+ {
6
+ name : 'Component 2' ,
7
+ } ,
8
+ {
9
+ name : 'Component 3' ,
10
+ } ,
11
+ {
12
+ name : 'Component 4' ,
13
+ } ,
14
+ {
15
+ name : 'Component 5' ,
16
+ } ,
17
+ {
18
+ name : 'Component 6' ,
19
+ } ,
20
+ {
21
+ name : 'Component 7' ,
22
+ } ,
23
+ {
24
+ name : 'Component 8' ,
25
+ } ,
26
+ {
27
+ name : 'Component 9' ,
28
+ } ,
29
+ {
30
+ name : 'Component 10' ,
31
+ } ,
32
+ {
33
+ name : 'Component 11' ,
34
+ } ,
35
+ {
36
+ name : 'Component 12' ,
37
+ } ,
38
+ {
39
+ name : 'Component 13' ,
40
+ } ,
41
+ {
42
+ name : 'Component 14' ,
43
+ } ,
44
+ ] ;
You can’t perform that action at this time.
0 commit comments