gb-lux/apps/front/tailwind.config.js

15 lines
260 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
brightness: {
80: '.80',
85: '0.85',
}
},
},
plugins: [require('@tailwindcss/forms'),],
}