Files
blackroad-os-demo/tailwind.config.mjs
2025-11-24 02:06:39 -06:00

23 lines
434 B
JavaScript

/** @type {import('tailwindcss').Config} */
const brandColors = {
primary: '#2F80ED',
secondary: '#6C5DD3',
accent: '#F2994A'
};
export default {
content: ['./app/**/*.{ts,tsx}', './components/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
brand: brandColors,
surface: '#0A0A10'
},
fontFamily: {
display: ['Inter', 'system-ui', 'sans-serif']
}
}
},
plugins: []
};