-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
36 lines (31 loc) · 889 Bytes
/
Copy pathconstants.ts
File metadata and controls
36 lines (31 loc) · 889 Bytes
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
import { Languages } from './@types';
export const colors = {
mainBlue: 'dodgerblue',
mainGreen: '#3ca56e',
backgroundDark: '#282c34',
backgroundBlue: '#2d3e5d',
backgroundSuperDark: '#1d2129',
backgroundDarkTranslucent: 'rgba(40,44,52, 0.7)'
};
export const CONTEXT_DEFAULT = {
status: 'disconnected',
containerName: '',
id: '',
activityId: '',
response: {
readData: {},
metaData: { saveInfo: {} },
writeData: { output: 'Output' }
},
socket: ''
};
export const fonts = {
display: "'Arvo', serif",
body: "'Cantarell', sans-serif"
};
export const languageOptions: { value: string; label: string }[] = [
{ value: Languages.JS, label: 'JavaScript' },
{ value: Languages.PYTHON, label: 'Python' },
{ value: Languages.C, label: 'C/C++' }
];
export const DOMAIN = `https://midgard.codexe.run`;