-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
54 lines (54 loc) · 1.29 KB
/
Copy pathtailwind.config.js
File metadata and controls
54 lines (54 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
outfit: ['Outfit', 'sans-serif'],
'jakarta': ['"Plus Jakarta Sans"', 'sans-serif'],
},
colors: {
primary: {
light: '#4ecdc4',
DEFAULT: '#2ab7ca',
dark: '#1d8a99',
},
secondary: '#ff6b6b',
accent: '#ffe66d',
dark: {
lighter: '#1f2833',
DEFAULT: '#0b0c10',
darker: '#020617',
},
glass: {
DEFAULT: 'rgba(255, 255, 255, 0.05)',
heavy: 'rgba(0, 0, 0, 0.6)',
}
},
animation: {
'gradient': 'gradient 8s linear infinite',
'float': 'float 6s ease-in-out infinite',
},
keyframes: {
gradient: {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center'
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center'
}
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' },
}
}
},
},
plugins: [],
}