-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (59 loc) · 1.47 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/Views/*.php',
'./app/Views/**/*.php',
'./app/Views/**/**/*.php',
'./app/Views/**/**/**/*.php',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
transparent: 'transparent',
'black': "#000000",
'white': "#FFFFFF",
'main': "#E6E7BA",
'second': "#FEFFEF",
'footer': "#291120",
'button-color': "#899443",
},
// backgroundColor: {
// 'main': "#E6E7BA",
// 'main-bg': "#E6E7BA",
// 'second': "#FEFFEF",
// 'footer': "#291120",
// 'button-color': "#899443",
// 'bg-none': "none",
// },
fontFamily: {
poppins: ["Poppins", "sans-serif"],
typey: ["typey", "serif"],
typeyItalic: ["typey-italic", "italic"],
},
fontSize: {
'extra-desktop': '36px',
'normal-desktop': '24px',
'normal-tablet': '20px',
'normal-mobile': '12px',
'smole-mobile': '10px',
'big-desktop': '48px',
'Medium-desktop': '30px',
'big-mobile': '28px',
'medium-mobile': '24px',
},
borderRadius: {
'big-desktop': '35px',
'normal-desktop': '25px',
'small-desktop': '20px',
'normal-mobile': '15px',
'big-mobile': '25px',
'small-mobile': '8px',
}
},
},
variants: {
extend: {},
},
plugins: [],
}