forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
94 lines (93 loc) · 1.96 KB
/
index.ts
File metadata and controls
94 lines (93 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import codesandbox from './codesandbox.json';
import codesandboxBlack from './codesandbox-black';
import codesandboxLight from './codesandbox-light.json';
import nightOwl from './night-owl.json';
import nightOwlNoItalics from './nightOwlNoItalics.json';
import atomDark from './atom-dark.json';
import atomLight from './atom-light.json';
import cobalt2 from './cobalt2';
import lucy from './lucy.json';
import palenight from './palenight.json';
import solarizedLight from './solarized-light.json';
import shadesOfPurple from './shades-of-purple';
import palenightItalic from './palenight-italic.json';
import highContrast from './high-contrast.json';
import vscodeLight from './vscode-light';
export default [
{
name: 'CodeSandbox',
id: 'codesandbox',
content: codesandbox,
},
{
name: 'CodeSandbox Black',
id: 'codesandboxBlack',
content: codesandboxBlack,
},
{
name: 'CodeSandbox Light',
id: 'codesandboxLight',
content: codesandboxLight,
},
{
name: 'Night Owl',
id: 'nightOwl',
content: nightOwl,
},
{
name: 'Night Owl (No Italics)',
id: 'nightOwlNoItalics',
content: nightOwlNoItalics,
},
{
name: 'Atom Dark',
id: 'atomDark',
type: 'dark',
content: atomDark,
},
{
name: 'Cobalt 2',
id: 'cobalt2',
content: cobalt2,
},
{
name: 'Palenight',
id: 'palenight',
content: palenight,
},
{
name: 'Palenight Italic',
id: 'palenightItalic',
content: palenightItalic,
},
{
name: 'Shades of Purple',
id: 'shadesOfPurple',
content: shadesOfPurple,
},
{
name: 'Lucy',
id: 'lucy',
content: lucy,
},
{
name: 'High Contrast',
id: 'highContrast',
content: highContrast,
},
{
name: 'VSCode Light',
id: 'vscodeLight',
content: vscodeLight,
},
{
name: 'Atom Light',
id: 'atomLight',
content: atomLight,
},
{
name: 'Solarized Light',
id: 'solarizedLight',
content: solarizedLight,
},
];