mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
36bcaaef85
* chore: use varaible.less * chore: basic primary varaible * chore: Move to variable * chore: align active color * chore: global fix of css variable * chore: primary colors * chore: button danger * chore: btn default error color * chore: button series * chore: More examples * chore: More components * chore: Form demo * chore: form style * fix: Tag & Alert variable * chore: update footer * chore: rm tmp code * chore: transfer * fix: picker column active color * chore: Adjust active bg color * chore: table hover color * chore: all css variables * chore: Global using variables * chore: Test case * chore: Update test logic * chore: back of default less * chore: entry of site use proxy style * chore: update entry * chore: split of variables * refactor: quick dist speed * fix: site use variable version * chore: Update less config * chore: add mv script * chore: Update repalcement script * chore: Add inject variables * chore: Update script * fix: script path * chore: Move to component instead * chore: fix condition * chore: update config * chore: Update in less transform * chore: Modify logic * chore: change to variables * chore: Update name * fix: script name * chore: do inject * revert: back of path * chore: 2 way of generate * bump tools * chore: Add auto replacement script * chore: auto genrate less file * chore: fix test * test: More test case * chore: Update limit config * test: coverage * docs: Update doc
98 lines
3.2 KiB
TypeScript
98 lines
3.2 KiB
TypeScript
/* eslint-disable import/prefer-default-export, prefer-destructuring */
|
|
|
|
import { updateCSS } from 'rc-util/lib/Dom/dynamicCSS';
|
|
import { TinyColor } from '@ctrl/tinycolor';
|
|
import { generate } from '@ant-design/colors';
|
|
import { Theme } from './context';
|
|
|
|
const dynamicStyleMark = `-ant-${Date.now()}-${Math.random()}`;
|
|
|
|
export function registerTheme(globalPrefixCls: string, theme: Theme) {
|
|
const variables: Record<string, string> = {};
|
|
|
|
const formatColor = (
|
|
color: TinyColor,
|
|
updater?: (cloneColor: TinyColor) => TinyColor | undefined,
|
|
) => {
|
|
let clone = color.clone();
|
|
clone = updater?.(clone) || clone;
|
|
return clone.toRgbString();
|
|
};
|
|
|
|
const fillColor = (colorVal: string, type: string) => {
|
|
const baseColor = new TinyColor(colorVal);
|
|
const colorPalettes = generate(baseColor.toRgbString());
|
|
|
|
variables[`${type}-color`] = formatColor(baseColor);
|
|
variables[`${type}-color-disabled`] = colorPalettes[1];
|
|
variables[`${type}-color-hover`] = colorPalettes[4];
|
|
variables[`${type}-color-active`] = colorPalettes[7];
|
|
variables[`${type}-color-outline`] = baseColor.clone().setAlpha(0.2).toRgbString();
|
|
variables[`${type}-color-deprecated-bg`] = colorPalettes[1];
|
|
variables[`${type}-color-deprecated-border`] = colorPalettes[3];
|
|
};
|
|
|
|
// ================ Primary Color ================
|
|
if (theme.primaryColor) {
|
|
fillColor(theme.primaryColor, 'primary');
|
|
|
|
const primaryColor = new TinyColor(theme.primaryColor);
|
|
const primaryColors = generate(primaryColor.toRgbString());
|
|
|
|
// Legacy - We should use semantic naming standard
|
|
primaryColors.forEach((color, index) => {
|
|
variables[`primary-${index + 1}`] = color;
|
|
});
|
|
// Deprecated
|
|
variables['primary-color-deprecated-l-35'] = formatColor(primaryColor, c => c.lighten(35));
|
|
variables['primary-color-deprecated-l-20'] = formatColor(primaryColor, c => c.lighten(20));
|
|
variables['primary-color-deprecated-t-20'] = formatColor(primaryColor, c => c.tint(20));
|
|
variables['primary-color-deprecated-t-50'] = formatColor(primaryColor, c => c.tint(50));
|
|
variables['primary-color-deprecated-f-12'] = formatColor(primaryColor, c =>
|
|
c.setAlpha(c.getAlpha() * 0.12),
|
|
);
|
|
|
|
const primaryActiveColor = new TinyColor(primaryColors[0]);
|
|
variables['primary-color-active-deprecated-f-30'] = formatColor(primaryActiveColor, c =>
|
|
c.setAlpha(c.getAlpha() * 0.3),
|
|
);
|
|
variables['primary-color-active-deprecated-d-02'] = formatColor(primaryActiveColor, c =>
|
|
c.darken(2),
|
|
);
|
|
}
|
|
|
|
// ================ Success Color ================
|
|
if (theme.successColor) {
|
|
fillColor(theme.successColor, 'success');
|
|
}
|
|
|
|
// ================ Warning Color ================
|
|
if (theme.warningColor) {
|
|
fillColor(theme.warningColor, 'warning');
|
|
}
|
|
|
|
// ================= Error Color =================
|
|
if (theme.errorColor) {
|
|
fillColor(theme.errorColor, 'error');
|
|
}
|
|
|
|
// ================= Info Color ==================
|
|
if (theme.infoColor) {
|
|
fillColor(theme.infoColor, 'info');
|
|
}
|
|
|
|
// Convert to css variables
|
|
const cssList = Object.keys(variables).map(
|
|
key => `--${globalPrefixCls}-${key}: ${variables[key]};`,
|
|
);
|
|
|
|
updateCSS(
|
|
`
|
|
:root {
|
|
${cssList.join('\n')}
|
|
}
|
|
`,
|
|
`${dynamicStyleMark}-dynamic-theme`,
|
|
);
|
|
}
|