You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
 
 
 
 

38 lines
1.0 KiB

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',
'./resources/js/**/*.vue',
],
theme: {
screens: {
'tablet': '740px',
// => @media (min-width: 640px) { ... }
'laptop': '1150px',
// => @media (min-width: 1024px) { ... }
'desktop': '1450px',
// => @media (min-width: 1280px) { ... }
},
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
roboto: ['Roboto']
},
colors: {
primary: "#681536",
secondary: "#313771",
},
},
},
plugins: [forms],
};