forked from jossmac/react-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.js
58 lines (50 loc) · 756 Bytes
/
theme.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
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
// ==============================
// THEME
// ==============================
var theme = {};
// container
theme.container = {
background: 'rgba(0, 0, 0, 0.8)',
gutter: {
horizontal: 10,
vertical: 10
},
zIndex: 2001
};
// header
theme.header = {
height: 40
};
theme.close = {
fill: 'white'
};
// footer
theme.footer = {
color: 'white',
count: {
color: 'rgba(255, 255, 255, 0.75)',
fontSize: '0.85em'
},
height: 40,
gutter: {
horizontal: 0,
vertical: 5
}
};
// thumbnails
theme.thumbnail = {
activeBorderColor: 'white',
size: 50,
gutter: 2
};
// arrow
theme.arrow = {
background: 'none',
fill: 'white',
height: 120
};
exports.default = theme;