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
91 lines (90 loc) · 2.52 KB
/
index.ts
File metadata and controls
91 lines (90 loc) · 2.52 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
import codesandbox from './codesandbox.json';
import codesandboxBlack from './codesandbox-black';
import codesandboxLight from './codesandbox-light.json';
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',
url:
'https://cdn.jsdelivr.net/gh/sdras/night-owl-vscode-theme@ff58e0d3967ef968492ce8c9809239f0511b9b70/themes/Night%20Owl-color-theme.json',
},
{
name: 'Night Owl (No Italics)',
id: 'nightOwlNoItalics',
url:
'https://cdn.jsdelivr.net/gh/sdras/night-owl-vscode-theme@ff58e0d3967ef968492ce8c9809239f0511b9b70/themes/Night%20Owl-color-theme-noitalic.json',
},
{
name: 'Atom Dark',
id: 'atomDark',
type: 'dark',
url:
'https://cdn.jsdelivr.net/gh/akamud/vscode-theme-onedark@11ef483921495ea6c086f56149dfa0ca6225ae53/themes/OneDark.json',
},
{
name: 'Cobalt 2',
id: 'cobalt2',
url: 'https://cdn.jsdelivr.net/gh/wesbos/cobalt2-vscode/theme/cobalt2.json',
},
{
name: 'Palenight',
id: 'palenight',
url:
'https://cdn.jsdelivr.net/gh/whizkydee/vscode-material-palenight-theme/themes/palenight.json',
},
{
name: 'Palenight Italic',
id: 'palenightItalic',
url:
'https://cdn.jsdelivr.net/gh/whizkydee/vscode-material-palenight-theme/themes/palenight-italic.json',
},
{
name: 'Shades of Purple',
id: 'shadesOfPurple',
url:
'https://cdn.jsdelivr.net/gh/ahmadawais/shades-of-purple-vscode@983101b2e9f57638fbc1bd5c551f5c84e561756e/themes/shades-of-purple-color-theme.json',
},
{
name: 'Lucy',
id: 'lucy',
url:
'https://cdn.jsdelivr.net/gh/juliettepretot/lucy-vscode@f27d836399d906bc7f7af5fd3950126240be969c/dist/color-theme.json',
},
{
name: 'High Contrast',
id: 'highContrast',
get: () => import('./high-contrast.json'),
},
{
name: 'VSCode Light',
id: 'vscodeLight',
get: () => import('./vscode-light'),
},
{
name: 'Atom Light',
id: 'atomLight',
url:
'https://cdn.jsdelivr.net/gh/akamud/vscode-theme-onelight/themes/OneLight.json',
},
{
name: 'Solarized Light',
id: 'solarizedLight',
url:
'https://cdn.jsdelivr.net/gh/Microsoft/vscode@d2b6bbb46fbdf535e2c96b3e00ac56ac1d427a69/extensions/theme-solarized-light/themes/solarized-light-color-theme.json',
},
];