Files
blackroad-apps/roadmap/tailwind.config.js
Your Name bbc1926dc0 📱 11 BlackRoad OS Apps
All published on BlackRoad OS App Store:
- Dashboard, Metrics, Vault, Agent Hub
- Commander, Analytics, Monitor
- Deployer, Studio, Sync
- Plus the original First App

Zero gatekeepers. Zero fees.
2026-02-10 14:41:25 -06:00

22 lines
385 B
JavaScript

module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'blackroad': {
50: '#f5f7fa',
100: '#ebeef3',
500: '#6366f1',
600: '#4f46e5',
900: '#1e1b4b'
}
}
}
},
plugins: []
}