-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
82 lines (81 loc) · 1.69 KB
/
Copy pathtailwind.config.js
File metadata and controls
82 lines (81 loc) · 1.69 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
const plugin = require("tailwindcss/plugin")
const config = {
mode: "jit",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/stories/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
purple: {
DEFAULT: "#AB23FF",
secondary: "#9123FF",
},
blue: {
DEFAULT: "#3D8BFF",
44: "rgba(61, 139, 255, 0.44)",
},
grey: {
line: "#13171D",
},
},
fontSize: {
xs: [
"0.625rem",
{
lineHeight: "0.6875rem",
},
],
sm: [
"1.125rem",
{
lineHeight: "1.2375rem",
},
],
md: [
"1.375rem",
{
lineHeight: "1.7875rem",
},
],
lg: [
"2.375rem",
{
lineHeight: "2.85rem",
},
],
xl: [
"4.25rem",
{
lineHeight: "4.675rem",
},
],
},
fontFamily: {
satoshi: ["var(--font-satoshi)"],
monumentextended: ["var(--font-monument-extended)"],
},
spacing: {
"100vh": "100vh",
"200vh": "200vh",
"300vh": "300vh",
"400vh": "400vh",
"500vh": "500vh",
},
},
},
plugins: [
require("tailwind-scrollbar"),
plugin(function ({ matchUtilities }) {
matchUtilities({
"bg-gradient": (angle) => ({
"background-image": `linear-gradient(${angle}, var(--tw-gradient-stops))`,
}),
})
}),
],
}
export default config