import type { ThemeConfig } from "antd";
import { COLORS } from "@cocalc/util/theme";
export function getBaseAntdTheme(): ThemeConfig {
return {
token: {
colorPrimary: COLORS.COCALC_BLUE,
colorLink: COLORS.BLUE_DD,
colorTextLightSolid: COLORS.TOP_BAR.ACTIVE,
colorTextDescription: COLORS.GRAY_DD,
},
};
}