-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
33 lines (29 loc) · 1.03 KB
/
config.js
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
export default {
"size": {
"min": 4,
"max": 30,
"step": 2,
"default": 4
},
"askToSaveScreenShoot" : true,
"keys" : {
"hideGui" : "`",
"clearScreen": "c",
"colors": [
{"key" : "r", "name": "red", "color" : "#FA122E"},
{"key" : "g", "name": "green", "color" : "#2CD864"},
{"key" : "b", "name": "blue", "color" : "#0080FF"},
{"key" : "o", "name": "orange", "color" : "#FF9B00"},
{"key" : "y", "name": "yellow", "color" : "#eec51f"},
{"key" : "v", "name": "violet", "color" : "#8d25ec"},
{"key" : "p", "name": "violet", "color" : "#ff00f3"},
],
"tools" : [
{"key": "1", "name": "selection", "tool": "selection"},
{"key": "2", "name": "brush", "tool": "brush"},
{"key": "3", "name": "rectangle", "tool": "rectangle"},
{"key": "4", "name": "line", "tool": "line"},
{"key": "5", "name": "text", "tool": "text"}
]
}
};