-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
51 lines (44 loc) · 1.14 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
const { animate } = require('framer-motion')
/** @type {import('tailwindcss').Config} */
module.exports = {
mod: "jit",
darkMode: "class",
content: [
"./src/App.{js,sx,ts,tsx}",
"./src/components/hero.{js,jsx,ts,tsx}",
"./src/components/about.{js,jsx,ts,tsx}",
"./src/components/contact.{js,jsx,ts,tsx}",
"./src/components/navbar.{js,jsx,ts,tsx}",
"./src/components/projects.{js,jsx,ts,tsx}",
"./src/components/skills.{js,jsx,ts,tsx}",
"./src/components/footer.{js,jsx,ts,tsx}",
"./src/components/Bot.{js,jsx,ts,tsx}",
"./src/components/pageLoader.{js,jsx,tx,tsx}"
],
theme: {
extend: {
fontFamily: {
pacifico: ['Pacifico', 'cursive'],
lobster: ['Lobster', 'cursive'],
righteous: ['Righteous', 'cursive'],
},
keyframes: {
animate:{
'0%, 10%, 100%':{
width:'0%'
},
'70%, 80%, 90%':{
width:'100%'
}
}
},
colors: {
'tooltip-gray': '#ccd6f6',
},
},
animation: {
animate: 'animate 6s linear infinite',
}
},
plugins: [],
}