-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
33 lines (32 loc) · 1.27 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
33
import type { Config } from "tailwindcss";
import TypographyPlugin from "@tailwindcss/typography";
import FormsPlugin from "@tailwindcss/forms";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"primary-50": "rgb(var(--color-primary-50) / <alpha-value>)",
"primary-100": "rgb(var(--color-primary-100) / <alpha-value>)",
"primary-200": "rgb(var(--color-primary-200) / <alpha-value>)",
"primary-300": "rgb(var(--color-primary-300) / <alpha-value>)",
"primary-400": "rgb(var(--color-primary-400) / <alpha-value>)",
"primary-500": "rgb(var(--color-primary-500) / <alpha-value>)",
"primary-600": "rgb(var(--color-primary-600) / <alpha-value>)",
"primary-700": "rgb(var(--color-primary-700) / <alpha-value>)",
"primary-800": "rgb(var(--color-primary-800) / <alpha-value>)",
"primary-900": "rgb(var(--color-primary-900) / <alpha-value>)",
"primary-950": "rgb(var(--color-primary-950) / <alpha-value>)",
},
},
},
plugins: [TypographyPlugin, FormsPlugin],
future: {
hoverOnlyWhenSupported: true,
},
};
export default config;