-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
67 lines (67 loc) · 2.08 KB
/
tailwind.config.js
File metadata and controls
67 lines (67 loc) · 2.08 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
// We are adding "./*" to catch files if they are not in src
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
brand: {
green: '#81c773',
greenLight: '#86c969',
blue: '#1775d4',
teal: '#32887a',
dark: '#0f172a',
},
accent: {
green: '#81c773',
blue: '#1775d4',
leaf: '#86c969',
teal: '#32887a',
greenLight: 'rgba(129, 199, 115, 0.08)',
blueLight: 'rgba(23, 117, 212, 0.08)',
leafLight: 'rgba(134, 201, 105, 0.08)',
tealLight: 'rgba(50, 136, 122, 0.08)',
}
},
backgroundImage: {
'grid-pattern': 'linear-gradient(rgba(108,60,252,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(108,60,252,0.03) 1px, transparent 1px)',
},
fontFamily: {
poppins: ['var(--font-poppins)', 'ui-sans-serif', 'system-ui', 'sans-serif'],
},
animation: {
'blob': 'blob 7s infinite',
'fade-in': 'fadeIn 0.5s ease-out',
'slide-up': 'slideUp 0.6s ease-out forwards',
'spin-slow': 'spin-slow 8s linear infinite',
},
keyframes: {
blob: {
'0%': { transform: 'translate(0px, 0px) scale(1)' },
'33%': { transform: 'translate(30px, -50px) scale(1.1)' },
'66%': { transform: 'translate(-20px, 20px) scale(0.9)' },
'100%': { transform: 'translate(0px, 0px) scale(1)' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
'spin-slow': {
from: { transform: 'rotate(0deg)' },
to: { transform: 'rotate(360deg)' },
}
}
},
},
plugins: [],
};