29 lines
597 B
JavaScript
29 lines
597 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
"littwin-blue": "#00AEEF",
|
|
},
|
|
screens: {
|
|
sm: "640px",
|
|
md: "768px",
|
|
lg: "1024px",
|
|
xl: "1280px",
|
|
laptop: "1348px",
|
|
"2xl": "1600px",
|
|
"3xl": "1920px",
|
|
},
|
|
height: {
|
|
laptop: "635px", // Benutzerdefinierte Höhe für Laptop
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|