2024-06-26 13:30:47 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
export default {
|
|
|
|
content: [
|
|
|
|
"./index.html",
|
|
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
|
|
],
|
2024-07-10 10:15:23 +00:00
|
|
|
safelist: [
|
|
|
|
{
|
2024-07-10 10:16:33 +00:00
|
|
|
pattern: /bg-blue+/, // Includes bg of all colors and shades
|
2024-07-10 10:15:23 +00:00
|
|
|
},
|
|
|
|
],
|
2024-06-26 13:30:47 +00:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
transitionProperty: {
|
|
|
|
'width': 'width'
|
2024-07-08 10:18:31 +00:00
|
|
|
},
|
2024-07-04 08:10:38 +00:00
|
|
|
screens: {
|
|
|
|
'3xl': '1800px',
|
2024-07-08 10:18:31 +00:00
|
|
|
},
|
|
|
|
fontSize: {
|
|
|
|
'xxs': '0.6rem',
|
|
|
|
},
|
2024-06-26 13:30:47 +00:00
|
|
|
},
|
|
|
|
},
|
2024-07-01 09:21:01 +00:00
|
|
|
plugins: [
|
|
|
|
],
|
2024-06-26 13:30:47 +00:00
|
|
|
darkMode: ['selector'],
|
|
|
|
}
|