17 lines
326 B
JavaScript
17 lines
326 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,jsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
surface: '#0f0f0f',
|
|
panel: '#1a1a1a',
|
|
border: '#2a2a2a',
|
|
accent: '#a855f7',
|
|
amber: '#f59e0b',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|