-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 1 KB
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ['var(--font-space-grotesk)', 'ui-sans-serif', 'system-ui'],
},
colors: {
senegal: {
green: "#00ffc5",
yellow: "#eaf27c",
red: "#ad2831",
},
galsendev: {
blue: "#5271ff",
"blue-light": "#869cff",
"blue-dark": "#293980",
},
},
animation: {
blob: 'blob 3s infinite',
'fade-in-up': 'fadeInUp 0.7s ease both',
},
keyframes: {
blob: {
'0%, 100%': { transform: 'scale(1)' },
'50%': { transform: 'scale(0.8)' },
},
fadeInUp: {
from: { opacity: '0', transform: 'translateY(16px)' },
to: { opacity: '1', transform: 'translateY(0)' },
},
},
},
},
plugins: [],
};