mirror of
https://github.com/aljazceru/goose.git
synced 2025-12-17 14:14:26 +01:00
14 lines
280 B
JavaScript
14 lines
280 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bgApp: 'var(--bg-app)',
|
|
textProminent: 'var(--text-prominent)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|