-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (59 loc) · 1.83 KB
/
tailwind.config.js
File metadata and controls
60 lines (59 loc) · 1.83 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
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: {
DEFAULT: '#00aaff', // Brighter blue
light: '#66ccff',
},
secondary: {
DEFAULT: '#ff6b6b', // Coral red
light: '#ff9e9e',
},
accent: {
DEFAULT: '#6cffaf', // Bright mint green
light: '#a3ffd1',
},
black: '#000000', // Pure black
white: '#ffffff', // Pure white
},
animation: {
gradient: 'gradient 15s ease infinite',
'fade-in-up': 'fadeInUp 0.6s ease-out forwards',
'fade-in-up-delay': 'fadeInUp 0.6s 0.3s ease-out forwards',
'fade-in-up-delay-2': 'fadeInUp 0.6s 0.6s ease-out forwards',
'fade-in-up-delay-3': 'fadeInUp 0.6s 0.9s ease-out forwards',
'float-slow': 'float 6s ease-in-out infinite',
'float-slow-reverse': 'float 6s ease-in-out infinite reverse',
'float-medium': 'float 4s ease-in-out infinite',
'pulse-slow': 'pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'bounce': 'bounce 1s infinite',
},
keyframes: {
gradient: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
fadeInUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-15px)' },
},
},
},
},
plugins: [],
darkMode: 'class',
}