mirror of
https://github.com/Kizuren/QuizConnect.git
synced 2025-12-21 13:06:15 +01:00
16 lines
No EOL
337 B
JavaScript
16 lines
No EOL
337 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: '#1a1a1a',
|
|
card: '#2d2d2d',
|
|
primary: '#007bff',
|
|
success: '#28a745',
|
|
error: '#dc3545',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}; |