forked from BitcoinBenin/bitcoinbenin.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
63 lines (63 loc) · 2.01 KB
/
Copy pathtailwind.config.js
File metadata and controls
63 lines (63 loc) · 2.01 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
// Premium Futuristic Palette
brand: {
dark: '#020617', // Deep Indigo/Slate Dark
charcoal: '#0F172A', // Lighter Dark for cards
green: '#53CB60', // Nouvelle couleur principale (vert frais)
accent: '#53CB60', // Lighter green for hover
'green-dark': '#3FA34C', // Version plus foncée de la nouvelle couleur
electric: '#00D9FF', // Electric blue accent
purple: '#8B5CF6', // Purple accent for variety
glass: 'rgba(2, 6, 23, 0.7)', // For glassmorphism
},
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
display: ['Space Grotesk', 'Outfit', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'premium-gradient': 'linear-gradient(to bottom right, #020617, #0F172A)',
},
boxShadow: {
'glass': '0 8px 32px 0 rgba(0, 0, 0, 0.37)',
'glow': '0 0 20px -5px rgba(83, 203, 96, 0.3)',
'glow-hover': '0 0 30px -5px rgba(83, 203, 96, 0.5)',
},
animation: {
'float': 'float 8s ease-in-out infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'fade-in': 'fade-in 0.8s ease-out',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
'fade-in': {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
},
},
},
plugins: [],
};