-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
38 lines (37 loc) · 915 Bytes
/
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
34
35
36
37
38
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class"],
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": "#F0F7FF",
"100": "#E0EFFE",
"200": "#C7E2FD",
"600": "#4338CA",
"700": "#3730A3",
"800": "#312E81",
"900": "#23215E",
},
secondary: {
"500": "#10B981",
"600": "#059669",
},
background: "var(--background)",
foreground: "var(--foreground)",
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
},
},
plugins: [require("tailwindcss-animate")],
};
export default config;