906b1a502d
- Full-featured blockchain explorer with React frontend + Node.js backend - Features: block/tx/address lookup, live node map, price ticker, rich list - Real-time updates via WebSocket - Comprehensive documentation (README, INSTALL, API, TROUBLESHOOTING) - Docker deployment with docker-compose - Deployed at https://maza.samiahmed7777.me
17 lines
289 B
JavaScript
17 lines
289 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'maza-blue': '#1e40af',
|
|
'maza-dark': '#0f172a',
|
|
'maza-gray': '#1e293b',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|