25 lines
521 B
JavaScript
25 lines
521 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
dark: {
|
|
primary: '#0f0f0f',
|
|
secondary: '#171717',
|
|
tertiary: '#1f1f1f',
|
|
border: '#2a2a2a',
|
|
hover: '#333333',
|
|
},
|
|
accent: '#3b82f6',
|
|
status: {
|
|
success: '#22c55e',
|
|
warning: '#f59e0b',
|
|
error: '#ef4444',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|