Files
helix-forge/design/tailwind.config.js

34 lines
970 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./*.{html,js}"],
theme: {
extend: {
colors: {
forge: {
bg: '#0B0F13',
'bg-muted': '#141A22',
border: '#222C3A',
cyan: '#4DEEEA',
blue: '#247BA0',
coral: '#FF6B6B',
amber: '#FFA06A',
text: '#F8FAFC',
'text-muted': '#94A3B8',
}
},
fontFamily: {
sans: ['"Plus Jakarta Sans"', 'Inter', 'sans-serif'],
mono: ['"JetBrains Mono"', 'Fira Code', 'monospace'],
},
backgroundImage: {
'helix-gradient': 'linear-gradient(135deg, #4DEEEA 0%, #247BA0 40%, #FF6B6B 80%, #FFA06A 100%)',
'helix-glow': 'radial-gradient(circle, rgba(77,238,234,0.12) 0%, rgba(255,107,107,0.04) 50%, transparent 100%)',
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
}
},
},
plugins: [],
}