mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 17:11:21 +00:00
36 lines
966 B
JavaScript
36 lines
966 B
JavaScript
const { fontFamily } = require("tailwindcss/defaultTheme");
|
|
const colors = require("tailwindcss/colors");
|
|
|
|
/** @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: {
|
|
container: {
|
|
center: true,
|
|
padding: "1.5rem",
|
|
screens: {
|
|
"2xl": "1440px",
|
|
},
|
|
},
|
|
extend: {
|
|
colors: {
|
|
primary: colors.zinc,
|
|
},
|
|
fontFamily: {
|
|
sans: ["Inter", "var(--font-inter)", ...fontFamily.sans],
|
|
display: ["Fjalla One", "var(--font-fjalla-one)"],
|
|
},
|
|
backgroundImage: {
|
|
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
|
"gradient-conic":
|
|
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
|
filter: "brightness(120%) saturate(120%) blur(2px)",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|