1
- // △ ▷ ▽ ◁
2
- // ═ ║ ╔ ╗ ╚ ╝ ╠ ╣ ╦ ╩ ╬
3
- // ━ ┃ ┏ ┓ ┗ ┛ ┣ ┫ ┳ ┻ ╋
4
- // https://colorhunt.co/palettes/sea
5
-
6
1
interface Level {
7
2
map : string [ ]
8
3
scale : number
9
- background : [ number , number , number ]
10
4
}
11
5
6
+ /**
7
+ * @see https://wikipedia.org/wiki/Box-drawing_characters
8
+ *
9
+ * ```
10
+ * △ ▷ ▽ ◁
11
+ * ═ ║ ╔ ╗ ╚ ╝ ╠ ╣ ╦ ╩ ╬
12
+ * ━ ┃ ┏ ┓ ┗ ┛ ┣ ┫ ┳ ┻ ╋
13
+ * ```
14
+ */
12
15
export const levels : Level [ ] = [
13
16
// 0
14
17
{
@@ -19,7 +22,6 @@ export const levels: Level[] = [
19
22
' ╚═◁' ,
20
23
] ,
21
24
scale : 1 ,
22
- background : [ 238 , 247 , 255 ] ,
23
25
} ,
24
26
25
27
// 1
@@ -31,7 +33,6 @@ export const levels: Level[] = [
31
33
'▷═╩═╝' ,
32
34
] ,
33
35
scale : 1 ,
34
- background : [ 205 , 232 , 229 ] ,
35
36
} ,
36
37
37
38
// 2
@@ -43,7 +44,6 @@ export const levels: Level[] = [
43
44
'╚═╩═╝' ,
44
45
] ,
45
46
scale : 1 ,
46
- background : [ 172 , 226 , 225 ] ,
47
47
} ,
48
48
49
49
// 3
@@ -56,7 +56,6 @@ export const levels: Level[] = [
56
56
' ╚╩═╝ △' ,
57
57
] ,
58
58
scale : 0.8 ,
59
- background : [ 224 , 251 , 226 ] ,
60
59
} ,
61
60
62
61
// 4
@@ -70,6 +69,5 @@ export const levels: Level[] = [
70
69
' ╚══╩══╝ ' ,
71
70
] ,
72
71
scale : 0.8 ,
73
- background : [ 220 , 242 , 241 ] ,
74
72
} ,
75
73
]
0 commit comments