34 lines
828 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import { composite } from 'seemly';
import { commonLight } from "../../_styles/common/index.mjs";
2024-08-02 18:19:39 +08:00
export function self(vars) {
2024-01-29 09:26:07 +08:00
const {
textColor2,
cardColor,
modalColor,
popoverColor,
dividerColor,
borderRadius,
fontSize,
hoverColor
} = vars;
return {
textColor: textColor2,
color: cardColor,
colorHover: hoverColor,
colorModal: modalColor,
colorHoverModal: composite(modalColor, hoverColor),
colorPopover: popoverColor,
colorHoverPopover: composite(popoverColor, hoverColor),
borderColor: dividerColor,
borderColorModal: composite(modalColor, dividerColor),
borderColorPopover: composite(popoverColor, dividerColor),
borderRadius,
fontSize
};
2024-08-02 18:19:39 +08:00
}
2024-01-29 09:26:07 +08:00
const listLight = {
name: 'List',
common: commonLight,
self
};
export default listLight;