2022-06-21 17:17:19 +08:00
|
|
|
import { generate } from '@ant-design/colors';
|
2022-06-27 11:54:31 +08:00
|
|
|
import type { ColorPalettes, MapToken, PresetColorType, SeedToken } from '../../interface';
|
2022-06-24 11:11:42 +08:00
|
|
|
import { defaultPresetColors } from '../seed';
|
2022-06-29 16:15:58 +08:00
|
|
|
import genColorMapToken from '../shared/genColorMapToken';
|
|
|
|
import genCommonMapToken from '../shared/genCommonMapToken';
|
2022-08-05 16:15:24 +08:00
|
|
|
import { generateColorPalettes, generateNeutralColorPalettes } from './palettes';
|
2022-06-21 17:17:19 +08:00
|
|
|
|
2022-06-27 11:54:31 +08:00
|
|
|
export default function derivative(token: SeedToken): MapToken {
|
2022-06-21 17:17:19 +08:00
|
|
|
const colorPalettes = Object.keys(defaultPresetColors)
|
|
|
|
.map((colorKey: keyof PresetColorType) => {
|
|
|
|
const colors = generate(token[colorKey]);
|
|
|
|
|
|
|
|
return new Array(10).fill(1).reduce((prev, _, i) => {
|
|
|
|
prev[`${colorKey}-${i + 1}`] = colors[i];
|
|
|
|
return prev;
|
|
|
|
}, {}) as ColorPalettes;
|
|
|
|
})
|
|
|
|
.reduce((prev, cur) => {
|
|
|
|
prev = {
|
|
|
|
...prev,
|
|
|
|
...cur,
|
|
|
|
};
|
|
|
|
return prev;
|
|
|
|
}, {} as ColorPalettes);
|
|
|
|
|
2022-07-05 10:35:44 +08:00
|
|
|
const colorBgBase = token.colorBgBase || '#fff';
|
|
|
|
const colorTextBase = token.colorTextBase || '#000';
|
|
|
|
|
2022-06-21 17:17:19 +08:00
|
|
|
return {
|
|
|
|
...token,
|
|
|
|
...colorPalettes,
|
2022-07-20 18:35:09 +08:00
|
|
|
colorBgBase,
|
|
|
|
colorTextBase,
|
2022-06-29 16:15:58 +08:00
|
|
|
// Colors
|
2022-07-15 19:27:29 +08:00
|
|
|
...genColorMapToken(
|
|
|
|
{ ...token, colorBgBase, colorTextBase },
|
|
|
|
{
|
2022-07-22 20:09:26 +08:00
|
|
|
generateColorPalettes,
|
2022-08-05 16:15:24 +08:00
|
|
|
generateNeutralColorPalettes,
|
2022-07-15 19:27:29 +08:00
|
|
|
},
|
|
|
|
),
|
2022-06-28 20:33:01 +08:00
|
|
|
|
2022-06-29 16:15:58 +08:00
|
|
|
...genCommonMapToken(token),
|
2022-06-21 17:17:19 +08:00
|
|
|
};
|
|
|
|
}
|