-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
92 lines (92 loc) · 2.51 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/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))",
"button-gradient": "linear-gradient(135deg, #3758FF 0%, #2447F2 100%)",
},
borderImage: {
"gradient-to-transparent":
"linear-gradient(to bottom, #f2f2f2, transparent) 1",
},
colors: {
dark: "#181818",
black: "#000000",
fern: "#dadada",
grey: "#f2f2f2",
"light-blue": "#5b62f4",
blue: "#4a64e5",
muted: "#71637F",
"deep-purple": "#470c85",
"light-purple": "#aa79e5",
lime: "#a0ee6a",
orange: "#ffa64",
floral: "#e5456d",
turquoise: "#68dbff",
},
},
},
plugins: [
function ({ addUtilities }) {
addUtilities({
".border-gradient-to-transparent": {
borderImage: "linear-gradient(to bottom, #f2f2f2, transparent) 1",
},
});
},
],
};
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/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))",
"button-gradient": "linear-gradient(135deg, #3758FF 0%, #2447F2 100%)",
},
borderImage: {
"gradient-to-transparent":
"linear-gradient(to bottom, #f2f2f2, transparent) 1",
},
colors: {
dark: "#181818",
black: "#000000",
fern: "#dadada",
grey: "#f2f2f2",
"light-blue": "#5b62f4",
blue: "#4a64e5",
muted: "#71637F",
"deep-purple": "#470c85",
"light-purple": "#aa79e5",
lime: "#a0ee6a",
orange: "#ffa64",
floral: "#e5456d",
turquoise: "#68dbff",
},
},
},
plugins: [
function ({ addUtilities }) {
addUtilities({
".border-gradient-to-transparent": {
borderImage: "linear-gradient(to bottom, #f2f2f2, transparent) 1",
},
});
},
],
};