-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (41 loc) · 967 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
49
50
51
52
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
'node_modules/flowbite-react/lib/esm/**/*.js'
],
theme: {
extend: {
spacing: {
side:'50px',
top:'100px'
},
boxShadow: {
custom: '0px 10px 30px rgba(47, 40, 43, 0.8)',
},
fontFamily:{
pano: ["Panoptica W00 Script"],
allerta: ['Allerta Stencil'],
inter:['Inter'],
64:['Sixtyfour'],
whisper:["Whisper"],
pacifico:["Pacifico"],
montserrat:["Montserrat"],
babe:["Bebas Neue"],
},
colors:{
first:'rgb(25,25,25)', //used
second:'#FFFFFF',
fourth:'#430d27',
fifth:"rgb(119, 119, 119)"
},
backgroundImage: {
'owl': "url('/owl3.jpg')",
}
},
},
plugins: [
require('flowbite/plugin')
],
}