44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import defaultTheme from 'tailwindcss/defaultTheme';
|
|
import forms from '@tailwindcss/forms';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
|
|
'./storage/framework/views/*.php',
|
|
'./resources/views/**/*.blade.php',
|
|
"./node_modules/tw-elements/dist/js/**/*.js",
|
|
],
|
|
|
|
darkMode: 'class',
|
|
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
},
|
|
|
|
screens: {
|
|
'sm': '640px',
|
|
// => @media (min-width: 640px) { ... }
|
|
|
|
'md': '768px',
|
|
// => @media (min-width: 768px) { ... }
|
|
|
|
'lg': '1024px',
|
|
// => @media (min-width: 1024px) { ... }
|
|
|
|
'xl': '1280px',
|
|
// => @media (min-width: 1280px) { ... }
|
|
|
|
'2xl': '1536px',
|
|
// => @media (min-width: 1536px) { ... }
|
|
|
|
'3xl': '1900px',
|
|
}
|
|
},
|
|
|
|
plugins: [forms, require("tw-elements/dist/plugin")],
|
|
};
|