-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
39 lines (37 loc) · 1.05 KB
/
Copy pathtailwind.config.ts
File metadata and controls
39 lines (37 loc) · 1.05 KB
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
39
import type { Config } from "tailwindcss";
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: {
DEFAULT: "#4f46e5",
50: "#FBF7FF",
100: "#F3EBFC",
200: "#E0CFFA",
300: "#C7B0F5",
400: "#927BED",
500: "#4f46e5",
600: "#413ACF",
700: "#2E27AB",
800: "#1E1A8A",
900: "#110E66",
950: "#080642",
},
secondary: "#3b82f6",
},
container: {
center: true,
},
screens: {
"3xl": "1792px",
"4xl": "2048px",
},
},
},
plugins: [
require("tailwindcss-debug-screens"),
require("@tailwindcss/typography"),
require("@tailwindcss/forms"),
],
} satisfies Config;