-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
64 lines (63 loc) · 1.54 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
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
import type { Config } from "tailwindcss";
import defaultTheme from "tailwindcss/defaultTheme";
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}",
],
darkMode: "class",
theme: {
...defaultTheme,
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
hs: {
50: "#f7a1ad",
100: "#f58e9c",
200: "#f47b8c",
300: "#f2687b",
400: "#f1556b",
500: "#ef425a",
600: "#d73b51",
700: "#bf3548",
800: "#a72e3f",
900: "#8f2836",
950: "#601a24",
},
},
screens: {
'xs': '321px',
'ms': '400px',
'xxl': '1440px',
},
spacing: {
'8xl': '96rem',
'9xl': '128rem',
},
fontSize: {
'xxl': '1.5rem',
},
borderRadius: {
'4xl': '2rem',
},
},
},
variants: {
cursor: ['disabled', 'focus'],
pointerEvents: ['disabled', 'focus'],
backgroundColor: ['disabled', 'focus'],
color: ['disabled', 'focus'],
text: ['disabled', 'focus'],
'box-shadow': ['disabled', 'focus'],
opacity: ['disabled', 'focus'],
border: ['disabled', 'focus'],
'border-color': ['disabled', 'focus'],
},
plugins: [],
};
export default config;