-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
77 lines (77 loc) · 2.13 KB
/
Copy pathtailwind.config.js
File metadata and controls
77 lines (77 loc) · 2.13 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
68
69
70
71
72
73
74
75
76
77
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
theme: {
extend: {
colors: {
primary: {
50: '#f0f4ff',
100: '#e0e9ff',
200: '#c7d7fe',
300: '#a5b9fc',
400: '#8196f8',
500: '#6366f1', // Main indigo
600: '#4f46e5',
700: '#4338ca',
800: '#3730a3',
900: '#312e81',
950: '#1e1b4b', // Deep purple
},
secondary: {
50: '#f0fdff',
100: '#ccf7fe',
200: '#99effd',
300: '#5fe3fa',
400: '#22d3ee', // Cyan
500: '#06b6d4',
600: '#0891b2',
700: '#0e7490',
800: '#155e75',
900: '#164e63',
},
accent: {
50: '#fdf4ff',
100: '#fae8ff',
200: '#f5d0fe',
300: '#f0abfc',
400: '#e879f9',
500: '#d946ef', // Fuchsia
600: '#c026d3',
700: '#a21caf',
800: '#86198f',
900: '#701a75',
}
},
animation: {
'float': 'float 3s ease-in-out infinite',
'fade-in': 'fadeIn 0.5s ease-in',
'gradient': 'gradient 8s ease infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
fadeIn: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
gradient: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
}
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-primary': 'linear-gradient(135deg, #312e81 0%, #4f46e5 50%, #6366f1 100%)',
'gradient-secondary': 'linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%)',
'gradient-accent': 'linear-gradient(135deg, #c026d3 0%, #d946ef 100%)',
}
},
},
plugins: [],
}