keks.cloud/tailwind.config.js

32 lines
638 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./layouts/**/*.{html,js,css}"],
theme: {
fontFamily: {
'roboto': ['Roboto', 'sans-serif'],
},
extend: {},
container: {
// you can configure the container to be centered
center: true,
// or have default horizontal padding
padding: '1rem',
// default breakpoints but with 40px removed
screens: {
sm: '600px',
md: '728px',
lg: '984px',
xl: '1240px',
'2xl': '1496px',
},
},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["lofi"],
}
}