-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
148 lines (147 loc) · 3.46 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
module.exports = {
// mode: 'jit',
purge: [
// "./app/modules/Front/**/*.{js,css,html,latte}",
// "./dev/front/**/*.{js,css,html,latte}",
"./app/modules/Front/**/*.latte",
"./app/modules/Front/**/*.js",
"./app/modules/Front/**/*.css",
"./dev/front/js/**/*.js",
"./dev/front/css/import/flash.css",
// "./dev/front/css/import/backgrounds.css",
"./dev/front/css/import/popup.css",
],
darkMode: 'class', // or 'media' or 'class'
theme: {
screens: {
"2xl": { 'max': "1536px" },
xl: { 'max': "1392px" },
lg: { 'max': "1024px" },
md: { 'max': "768px" },
sm: { 'max': "640px" },
},
container: {
center: true,
maxWidth: "1280px",
},
fontSize: {
button: [
{
fontSize: "12px",
lineHeight: "20px",
letterSpacing: "1px",
fontWeight: "800",
},
],
xs: ["12px", "22px"],
sm: ["14px", "24px"],
base: ["16px", "20px"],
input: ["18px", "24px"],
lead: ["22px", "42px"],
lg: ["28px", "40px"],
xl: ["38px", "50px"],
"2xl": ["48px", "60px"],
"3xl": ["58px", "70px"],
"4xl": ["80px", "92px"],
hd: ["120px", "132px"],
},
extend: {
fontFamily: {
'body': ['Jost', 'Futura', 'Gil Sans', 'sans'],
},
screens: {
"3xl": "1920px",
},
gap: {
30: "30px",
},
borderWidth: {
half: "0.5px",
quarter: "0.25px",
},
colors: {
transparent: "transparent",
current: "currentColor",
light: {
DEFAULT: "#ffffff",
1: "#f5f5f5",
2: "#acacac",
3: "#757575",
},
grey: {
DEFAULT: "#656666",
darker: "#070A0A",
dark: "#4F4F4F",
light: "#B0AEAE",
lighter: "#CFC2C2",
3: "#ababab",
},
white: "#ffffff",
yellow: {
DEFAULT: "#FFC000",
dark: "#d19e06",
light: "#FCCB38",
lighter: "#FFE387",
lightest: "#FCEAAC",
},
red: {
DEFAULT: "#C90A1D",
darkest: "#4d0202",
darker: "#990F1D",
dark: "#A80314",
// light: "#EB0017",
light: "#db2c2c",
lighter: "#FA0F26",
danger: "#db0000",
"danger-2": "#ff0000",
},
green: {
DEFAULT: "#13C6B0",
},
orange: {
DEFAULT: "#FA7F0C",
darker: "#DB6C04",
dark: "#f77902",
light: "#FA8A20",
lighter: "#FCB674",
lightest: "#fcf5de",
},
purple: {
DEFAULT: "#9327A8",
darkest: "#11001C",
darker: "#4E1559",
dark: "#5D046E",
light: "#A324BD",
lighter: "#D270E6",
},
blue: {
DEFAULT: "#1C6CB8",
darker: "#1D2461",
dark: "#0A5194",
light: "#4D9FEB",
lighter: "#B5DBFF",
},
primary: "#FA8A20",
// primary: "#A80314",
secondary: "#FFC000",
// ternary: "#A80314",
ternary: "#c91f08",
'dark-primary': '#5D046E',
'dark-secondary': '#19367e',
},
width: {
55: "220px",
},
height: {
55: "220px",
},
},
},
variants: {
extend: {
backdropFilter: ['dark'],
},
},
plugins: [],
}
// https://coolors.co/12355b-420039-d72638-ffffff-ff570a-d8c99b