-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
55 lines (54 loc) · 1.73 KB
/
config.js
File metadata and controls
55 lines (54 loc) · 1.73 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
const config = {
"styles": {
"tile": {
"title": "Tiles",
"cover": "tile125.png",
"soundSlide": "tile-slide.mp3",
"soundError": "tile-error.mp3",
"schemes": {
"brown": {
"title": "Brown Wood",
"tileImage": "tile-light.png",
"tileImageAlt": "tile-dark.png",
"fontFamily": "'Times New Roman', Times, serif",
"color": "#963"
},
"metal": {
"title": "Brushed Metal",
"tileImage": "tile-metal.png",
"tileImageAlt": "tile-metal.png",
"fontFamily": "Garamond, Helvetica, sans-serif",
"color": "#933"
}
}
},
"image": {
"title": "Image",
"cover": "400-image.jpg",
"soundSlide": "tile-slide.mp3",
"soundError": "tile-error.mp3",
"schemes": {
"image": {
"title": "Pattern Image",
"tileImage": "400-image.jpg"
},
"bluemarble": {
"title": "Blue Marble",
"tileImage": "bluemarble.jpg"
},
"totoro": {
"title": "Totoro",
"tileImage": "400-totoro.jpg"
},
"cat": {
"title": "Cat",
"tileImage": "400-cat.jpg"
},
"rosetta": {
"title": "Rosetta",
"tileImage": "400-rosetta.jpg"
}
}
}
}
};