22 lines
575 B
JavaScript
22 lines
575 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.self = self;
|
|
const common_1 = require("../../_styles/common");
|
|
function self() {
|
|
return {
|
|
dotSize: '8px',
|
|
dotColor: 'rgba(255, 255, 255, .3)',
|
|
dotColorActive: 'rgba(255, 255, 255, 1)',
|
|
dotColorFocus: 'rgba(255, 255, 255, .5)',
|
|
dotLineWidth: '16px',
|
|
dotLineWidthActive: '24px',
|
|
arrowColor: '#eee'
|
|
};
|
|
}
|
|
const carouselLight = {
|
|
name: 'Carousel',
|
|
common: common_1.commonLight,
|
|
self
|
|
};
|
|
exports.default = carouselLight;
|