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-07-25 09:23:17 +00:00
|
|
|
{
|
|
|
|
pattern: /bg-(red|green|blue|amber)-(100|200|300|800)/, // Includes bg of all colors and shades
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pattern: /text-(red|green|blue|amber)-(100|700|800)/, // Includes bg of all colors and shades
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pattern: /border-(red|green|blue|amber)-(700)/, // 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: {
|
2024-07-25 09:23:17 +00:00
|
|
|
'2xs': '0.66rem',
|
2024-07-08 10:18:31 +00:00
|
|
|
},
|
2024-07-25 09:23:17 +00:00
|
|
|
maxWidth: {
|
|
|
|
'8xl': '88rem',
|
|
|
|
'9xl': '96rem',
|
|
|
|
'10xl': '104rem',
|
|
|
|
}
|
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'],
|
|
|
|
}
|