mk-react-images
Version:
A simple, responsive lightbox component for displaying an array of images with React.js
58 lines (50 loc) • 756 B
JavaScript
;
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;