-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 1.26 KB
/
Copy pathtailwind.config.js
File metadata and controls
51 lines (51 loc) · 1.26 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
brand: {
50: '#f0f7ff',
100: '#e0effe',
200: '#bae0fd',
300: '#7cc5fb',
400: '#38a5f6',
500: '#0e87eb',
600: '#026bc9',
700: '#0355a3',
800: '#074885',
900: '#0c3d6f',
950: '#08274a',
},
cyber: {
cyan: '#00f2fe',
blue: '#4facfe',
emerald: '#10b981',
violet: '#8b5cf6',
dark: '#0a0f1d',
card: '#111827',
border: '#1f2937'
}
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'],
mono: ['JetBrains Mono', 'Fira Code', 'Menlo', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-10px)' },
}
}
},
},
plugins: [],
}