mirror of
https://github.com/blackboxprogramming/blackroad-apps.git
synced 2026-03-17 09:37:52 -05:00
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.
22 lines
385 B
JavaScript
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: []
|
|
}
|