Files
regress/frontend/tailwind.config.js
T

14 lines
266 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,ts}'],
theme: {
extend: {
colors: {
orange: { team: '#f97316' },
green: { team: '#22c55e' },
},
},
},
plugins: [],
};