mirror of
https://github.com/kevin-DL/comedy-video-lib.git
synced 2026-01-11 10:54:26 +00:00
48 lines
1001 B
JavaScript
48 lines
1001 B
JavaScript
module.exports = {
|
|
future: {
|
|
removeDeprecatedGapUtilities: true,
|
|
purgeLayersByDefault: true,
|
|
},
|
|
theme: {
|
|
screens: {
|
|
dark: { raw: '(prefers-color-scheme: dark)' },
|
|
sm: '640px',
|
|
md: '768px',
|
|
lg: '1024px',
|
|
xl: '1280px',
|
|
xxl: '1920px',
|
|
},
|
|
extend: {
|
|
colors: {
|
|
'light-blue': {
|
|
'50': '#f0f9ff',
|
|
'100': '#e0f2fe',
|
|
'200': '#bae6fd',
|
|
'300': '#7dd3fc',
|
|
'400': '#38bdf8',
|
|
'500': '#0ea5e9',
|
|
'600': '#0284c7',
|
|
'700': '#0369a1',
|
|
'800': '#075985',
|
|
'900': '#0c4a6e',
|
|
}
|
|
}
|
|
}
|
|
},
|
|
variants: {},
|
|
plugins: [require('@tailwindcss/ui')],
|
|
purge: {
|
|
enabled: process.env.NODE_ENV === 'production',
|
|
content: [
|
|
'components/**/*.vue',
|
|
'layouts/**/*.vue',
|
|
'pages/**/*.vue',
|
|
'plugins/**/*.js',
|
|
'nuxt.config.js',
|
|
// TypeScript
|
|
'plugins/**/*.ts',
|
|
'nuxt.config.ts',
|
|
],
|
|
},
|
|
}
|