2024-01-29 09:26:07 +08:00

29 lines
859 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.self = void 0;
const styles_1 = require("../../_internal/scrollbar/styles");
const styles_2 = require("../../dialog/styles");
const styles_3 = require("../../card/styles");
const common_1 = require("../../_styles/common");
const _mixins_1 = require("../../_mixins");
const self = (vars) => {
const { modalColor, textColor2, boxShadow3 } = vars;
return {
color: modalColor,
textColor: textColor2,
boxShadow: boxShadow3
};
};
exports.self = self;
const modalLight = (0, _mixins_1.createTheme)({
name: 'Modal',
common: common_1.commonLight,
peers: {
Scrollbar: styles_1.scrollbarLight,
Dialog: styles_2.dialogLight,
Card: styles_3.cardLight
},
self: exports.self
});
exports.default = modalLight;