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

19 lines
480 B
JavaScript

import { commonDark } from "../../_styles/common/index.mjs";
import { self } from "./light.mjs";
const cardDark = {
name: 'Card',
common: commonDark,
self(vars) {
const commonSelf = self(vars);
const {
cardColor,
modalColor,
popoverColor
} = vars;
commonSelf.colorEmbedded = cardColor;
commonSelf.colorEmbeddedModal = modalColor;
commonSelf.colorEmbeddedPopover = popoverColor;
return commonSelf;
}
};
export default cardDark;