-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
111 lines (109 loc) · 2.22 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
module.exports = {
prefix: '',
separator: ':',
purge: [
'./src/resources/lang/*.json',
'./src/resources/views/**/**/*.pug',
'./src/resources/views/**/*.pug',
'./src/resources/views/*.pug'
],
theme: {
screens: {
// xs: '0px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
xxl: '1440px'
},
fontWeight: {
regular: 400,
'semi-bold': 500,
bold: 600
},
fontFamily: {
display: ['Poppins', 'Roboto', 'sans-serif'],
body: ['Poppins', 'Roboto', 'sans-serif'],
},
fontSize: {
base: "14px",
xl: "48px",
lg: "36px",
md: "30px",
sm: "24px",
'10': '10px',
'12': '12px',
'18': '18px'
},
borderWidth: {
default: '1px',
'0': '0',
'2': '2px',
'4': '4px',
},
borderRadius: {
'4': "4px",
'6': "6px"
},
extend: {
maxWidth: {
'512': '512px',
'400': '400px',
'300': '300px',
'350': '350px',
'280': '280px'
},
colors: {
primary: "#013c4d",
'primary-soft': "#005E79",
'primary-cta': "#194754",
secondary: "#f3e5b1",
danger: "#d5441c",
cyan: '#9dd5cb',
white: '#ffffff',
grey: "#201f24",
gray: "#F7F8FA",
grey: {
dark: "#d6dbe1",
lite: "#e9e8e4",
natural: "#7b7b7b",
soft: "#B9B9B9",
skin: "#aaaaaa"
}
},
borderColor: theme => ({
grey: {
dark: theme('colors.grey.dark')
}
}),
spacing: {
'10': '10px',
'15': '15px',
'20': '20px',
'25': '25px',
'30': '30px',
'50': '50px',
'90': '90px',
'100': '100px',
'120': '120px',
'200': '200px',
'300': '300px',
},
inset: {
'50': "50%"
},
boxShadow: {
primary: "0px 1px 25px rgba(1, 60, 77, 0.1)"
},
fill: theme => ({
'primary': theme('colors.primary'),
'secondary': theme('colors.secondary')
})
}
},
variants: {
fill: ['responsive', 'hover'],
inset: ['responsive', 'hover', 'focus']
},
plugins: [],
}