-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
112 lines (110 loc) · 2.3 KB
/
tailwind.config.ts
File metadata and controls
112 lines (110 loc) · 2.3 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import type { Config } from "tailwindcss";
const colors = require("tailwindcss/colors");
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: {
fontFamily: {
poppins: ["Poppins", "sans-serif"],
sans: ["Poppins"],
},
screens: {
["3xsm"]: "280px",
["2xsm"]: "320px",
xsm: "460px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
["2xl"]: "1536px",
["3xl"]: "1920px",
["4xl"]: "2440px",
},
colors: {
...colors,
primary: {
DEFAULT: "#2DD197",
10: "#D5F9EC",
20: "#FFE7C4",
30: "#FFE0B5",
40: "#FED9A6",
50: "#FDC886",
60: "#FFC266",
70: "#FFB54D",
80: "#FFA733",
90: "#FF9600",
foreground: "#FFFDF9",
},
secondary: {
DEFAULT: "#FCF0E1",
foreground: "#010816",
},
destructive: {
DEFAULT: "#ee4444",
foreground: "#f7f9fb",
},
muted: {
DEFAULT: "#f1f5f9",
foreground: "#64748b",
},
accent: {
DEFAULT: "#f1f5f9",
foreground: "#0f172a",
},
popover: {
DEFAULT: "#ffffff",
foreground: "#010816",
},
card: {
DEFAULT: "#ffffff",
foreground: "#010816",
},
gray: "#ADADAD",
darkGray: "#848A8A",
black: "#000000",
white: "#FFFFFF",
border: "#e2e8f0",
input: "#e2e8f0",
ring: "#010816",
background: "#ffffff",
foreground: "#010816",
},
borderRadius: {
xsm: "8px",
sm: "12px",
md: "24px",
lg: "36px",
xl: "48px",
full: "9999px",
},
fontSize: {
h1: "40px",
h2: "32px",
h3: "24px",
h4: "20px",
h5: "18px",
h6: "16px",
paragraph: "14px",
small: "12px",
hint: "10px",
},
fontWeight: {
DEFAULT: "400",
light: "300",
regular: "400",
medium: "500",
semibold: "600",
bold: "700",
},
},
extend: {},
plugins: [
require("@tailwindcss/line-clamp"),
require("tailwind-scrollbar-hide"),
],
} satisfies Config;
export default config;