-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
52 lines (50 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
darkMode: 'class',
content: [
'./src/**/*.{ts,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {
fontFamily: {
poppins: ['Poppins', 'Helvetica'],
serif: ['Helvetica', ...defaultTheme.fontFamily.serif],
body: ['Open Sans']
},
width: {
1600: '1600px',
400: '400px',
450: '450px',
210: '210px',
550: '550px',
260: '260px',
650: '650px'
},
height: {
600: '600px',
280: '280px',
900: '900px',
458: '458px'
},
backgroundColor: {
primary: '#000',
blur: '#030303'
},
colors: {
primary: 'rgb(22, 24, 35)'
},
backgroundImage: {
'blurred-img':
"url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSsaaJ7s4lqcBF4IDROVPzrlL5fexcwRmDlnuEYQenWTt1DejFY5kmYDref2a0Hp2eE4aw&usqp=CAU')"
}
}
},
plugins: [
require('@headlessui/tailwindcss'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms')
]
};