-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1012 Bytes
/
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
module.exports = {
content: ['./layouts/**/*.html'],
safelist: [
'bg-slate-100',
],
media: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
400: "#ED7365",
500: "#EB6050",
600: "#E35443",
},
secondary: {
50: "#F6F6FF",
100: "#D8DCFF",
300: "#AEADF0",
500: "#4D28A4",
700: "#2E1863",
900: "#1F1042",
},
},
borderRadius: {
'4xl': '3rem',
},
fontFamily: {
sans: "Poppins, sans-serif",
},
letterSpacing: {
widest: '.25em',
},
maxWidth: {
'screen-2xl': '1340px'
},
screens: {
's-a-f': { 'raw': '(max-height: 450px)'},
'n-a-f': { 'raw': '(max-width: 350px)'},
}
},
},
plugins: [
// ...
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms')
],
};