-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
32 lines (31 loc) · 1.03 KB
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
const config: Config = {
content: [
"./src/pages/**/*.{html,js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{html,js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{html,js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
// Main theme colors
background: "var(--color-background)",
lightBackground: "var(--color-light-background)",
primary: "var(--color-primary)",
primaryText: "var(--color-primary-text)",
secondary: "var(--color-secondary)",
secondaryAlt: "var(--color-secondary-alt)",
// Additional body text color options
bodyLightSlateGray: "var(--color-body-light-slate-gray)",
pinkSoft: "var(--color-pink-soft)",
},
fontFamily: {
sans: ["var(--font-ibmPlexSans)", ...defaultTheme.fontFamily.sans],
mono: ["var(--font-ibmPlexMono)", ...defaultTheme.fontFamily.mono],
},
},
},
plugins: [],
};
export default config;