-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
54 lines (53 loc) · 1.19 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
screens: {
"xs-a": "322px",
"xs-b": "580px",
},
colors: {
primary: {
500: "#42BBFF",
800: "#0C3247",
900: "#42BBFF1A",
},
error: {
500: "#EF4444",
},
black: {
600: "#2E3757",
700: "#1D2032",
800: "#131625",
900: "#10121E",
},
white: {
100: "#FFFFFF",
300: "#ADB3CC",
500: "#55597D",
},
purple: {
500: "#9542FF",
900: "#9542FF1A",
},
green: {
400: "#68D1BF",
500: "#42FF77",
900: "#42FF771A",
},
},
},
},
plugins: [require("@tailwindcss/forms")],
};
export default config;