-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy paththemeroller-textures.js
124 lines (123 loc) · 1.99 KB
/
themeroller-textures.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
"use strict";
// Hard coded textures
module.exports = [ {
"type": "flat",
"width": "40",
"height": "100",
"repeat": "repeat-x"
}, {
"type": "glass",
"width": "1",
"height": "400",
"repeat": "repeat-x"
}, {
"type": "highlight_soft",
"width": "1",
"height": "100",
"repeat": "repeat-x"
}, {
"type": "highlight_hard",
"width": "1",
"height": "100",
"repeat": "repeat-x"
}, {
"type": "inset_soft",
"width": "1",
"height": "100",
"repeat": "repeat-x"
}, {
"type": "inset_hard",
"width": "1",
"height": "100",
"repeat": "repeat-x"
}, {
"type": "diagonals_small",
"width": "40",
"height": "40",
"repeat": "repeat"
}, {
"type": "diagonals_medium",
"width": "40",
"height": "40",
"repeat": "repeat"
}, {
"type": "diagonals_thick",
"width": "40",
"height": "40",
"repeat": "repeat"
}, {
"type": "dots_small",
"width": "2",
"height": "2",
"repeat": "repeat"
}, {
"type": "dots_medium",
"width": "4",
"height": "4",
"repeat": "repeat"
}, {
"type": "white_lines",
"width": "40",
"height": "100",
"repeat": "repeat"
}, {
"type": "gloss_wave",
"width": "500",
"height": "100",
"repeat": "repeat-x"
}, {
"type": "diamond",
"width": "10",
"height": "8",
"repeat": "repeat"
}, {
"type": "loop",
"width": "21",
"height": "21",
"repeat": "repeat"
}, {
"type": "carbon_fiber",
"width": "8",
"height": "9",
"repeat": "repeat"
}, {
"type": "diagonal_maze",
"width": "10",
"height": "10",
"repeat": "repeat"
}, {
"type": "diamond_ripple",
"width": "22",
"height": "22",
"repeat": "repeat"
}, {
"type": "hexagon",
"width": "12",
"height": "10",
"repeat": "repeat"
}, {
"type": "layered_circles",
"width": "13",
"height": "13",
"repeat": "repeat"
}, {
"type": "3D_boxes",
"width": "12",
"height": "10",
"repeat": "repeat"
}, {
"type": "glow_ball",
"width": "600",
"height": "600",
"repeat": "repeat-x"
}, {
"type": "spotlight",
"width": "600",
"height": "600",
"repeat": "repeat-x"
}, {
"type": "fine_grain",
"width": "60",
"height": "60",
"repeat": "repeat"
} ];