mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-05 12:00:59 +08:00
- Add brand components: BrandHero, BrandFeatures, BrandStats, Marquee - Add core components: TerminalHero, AgentGrid, LiveFeed - Add mascot images - Update LandingPage with new component structure - Update CSS and Tailwind config for new design - Add market data enhancements
20 lines
393 B
JavaScript
20 lines
393 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'nofx-gold': '#F0B90B',
|
|
'nofx-gold-dim': 'rgba(240, 185, 11, 0.15)',
|
|
'nofx-bg': '#0B0E11',
|
|
'nofx-accent': '#00F0FF',
|
|
'nofx-text': '#EAECEF',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|