mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 12:09:14 +08:00
c9bac13bc8
* add devDependencies * rerun ci * rerun ci * update * update * fix * chore: update * fix * fix --------- Co-authored-by: MadCcc <1075746765@qq.com>
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
/* eslint-disable import/prefer-default-export */
|
|
import type { CSSObject } from '@ant-design/cssinjs';
|
|
import type { AliasToken, PresetColorKey } from '../internal';
|
|
import { PresetColors } from '../interface';
|
|
import type { TokenWithCommonCls } from './genComponentStyleHook';
|
|
|
|
interface CalcColor {
|
|
/** token[`${colorKey}-1`] */
|
|
lightColor: string;
|
|
/** token[`${colorKey}-3`] */
|
|
lightBorderColor: string;
|
|
/** token[`${colorKey}-6`] */
|
|
darkColor: string;
|
|
/** token[`${colorKey}-7`] */
|
|
textColor: string;
|
|
}
|
|
|
|
type GenCSS = (colorKey: PresetColorKey, calcColor: CalcColor) => CSSObject;
|
|
|
|
export default function genPresetColor<Token extends TokenWithCommonCls<AliasToken>>(
|
|
token: Token,
|
|
genCss: GenCSS,
|
|
): CSSObject {
|
|
return PresetColors.reduce((prev: CSSObject, colorKey: PresetColorKey) => {
|
|
const lightColor = token[`${colorKey}1`];
|
|
const lightBorderColor = token[`${colorKey}3`];
|
|
const darkColor = token[`${colorKey}6`];
|
|
const textColor = token[`${colorKey}7`];
|
|
|
|
return {
|
|
...prev,
|
|
...genCss(colorKey, { lightColor, lightBorderColor, darkColor, textColor }),
|
|
};
|
|
}, {} as CSSObject);
|
|
}
|