Files
goose/ui-v2/tailwind.config.js
2025-05-19 10:45:42 -04:00

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: [],
};