mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-23 09:43:46 +00:00
10 lines
314 B
TypeScript
10 lines
314 B
TypeScript
const themeSettings = {
|
|
primaryColor: '#1b58f4', // 全局主色
|
|
linkColor: '#1b58f4', // 链接色
|
|
linkHoverColor: '#1b58f4',
|
|
disabledBg: '#ebebeb', // 失效背景色,
|
|
disabledColor: '#bebebe', // 失效文本色,
|
|
btnDisableColor: '#a4a4a4', // 禁用btn文字颜色
|
|
};
|
|
export default themeSettings;
|