Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/app/antd-base-theme.ts
2442 views
1
/*
2
* This file is part of CoCalc: Copyright © 2025 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
import type { ThemeConfig } from "antd";
7
8
import { COLORS } from "@cocalc/util/theme";
9
10
export function getBaseAntdTheme(): ThemeConfig {
11
return {
12
token: {
13
colorPrimary: COLORS.COCALC_BLUE,
14
colorLink: COLORS.BLUE_DD,
15
colorTextLightSolid: COLORS.TOP_BAR.ACTIVE,
16
colorTextDescription: COLORS.GRAY_DD,
17
},
18
};
19
}
20
21