anycoder-bcd75aa1 / tailwind.config.js
santiagr7776's picture
Upload tailwind.config.js with huggingface_hub
957183b verified
raw
history blame contribute delete
627 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
titan: {
900: '#0f172a',
800: '#1e293b',
700: '#334155',
accent: '#3b82f6',
danger: '#ef4444',
success: '#10b981',
warning: '#f59e0b',
}
},
fontFamily: {
mono: ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', 'monospace'],
}
},
},
plugins: [],
}