Files
CPLv4.0/tailwind.config.js

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: "1350px",
"2xl": "1600px",
"3xl": "1920px",
},
height: {
laptop: "688px", // Benutzerdefinierte Höhe für Laptop
},
},
},
plugins: [],
};