-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
89 lines (89 loc) · 1.75 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
module.exports = {
purge: [
"./app/modules/Front/**/*.latte",
"./app/modules/Front/**/*.js",
"./dev/front/js/**/*.js",
],
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
"2xl": { 'max': "1536px" },
xl: { 'max': "1392px" },
lg: { 'max': "1024px" },
md: { 'max': "768px" },
sm: { 'max': "640px" },
},
container: {
center: true,
},
fontSize: {
button: [
"10px",
{
lineHeight: "22px",
letterSpacing: "3px",
},
],
xs: ["12px", "22px"],
sm: ["14px", "24px"],
base: ["16px", "22px"],
lead: ["20px", "28px"],
lg: ["28px", "40px"],
xl: ["38px", "50px"],
"2xl": ["48px", "60px"],
"3xl": ["58px", "70px"],
"4xl": ["80px", "92px"],
hd: ["120px", "132px"],
},
extend: {
screens: {
"3xl": "1920px",
},
gap: {
30: "30px",
},
borderWidth: {
half: "0.5px",
quarter: "0.25px",
},
colors: {
transparent: "transparent",
current: "currentColor",
black: {
DEFAULT: "#000000",
100: "#111111",
},
grey: {
3: "#ababab",
},
white: "#ffffff",
yellow: {
DEFAULT: "#FFCE41",
},
red: {
DEFAULT: "#E65069",
},
green: {
DEFAULT: "#13C6B0",
},
orange: {
DEFAULT: "#FABA71",
},
purple: {
DEFAULT: "#44105C",
light: "#A288E3",
},
},
width: {
55: "220px",
},
height: {
55: "220px",
},
},
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
],
}