117 lines
3.6 KiB
JavaScript
117 lines
3.6 KiB
JavaScript
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
mode: "jit",
|
|
// darkMode: 'media', // or 'media' or 'class'
|
|
theme: {
|
|
screens: {
|
|
xs: "10px",
|
|
sm: "640px",
|
|
md: "768px",
|
|
lg: "1024px",
|
|
xl: "1280px",
|
|
"2xl": "1536px",
|
|
"3xl": "2500px",
|
|
portrait: { raw: "(orientation: portrait)" },
|
|
landscape: { raw: "(orientation: landscape)" },
|
|
},
|
|
spacing: {
|
|
0: "0px",
|
|
1: "4px",
|
|
2: "8px",
|
|
3: "12px",
|
|
4: "16px",
|
|
5: "24px",
|
|
6: "32px",
|
|
7: "48px",
|
|
8: "80px",
|
|
9: "800px",
|
|
},
|
|
fontFamily: {
|
|
...defaultTheme.fontFamily,
|
|
// serif: ['Didot', 'Didot LT', 'STD', 'Hoefler Text' , 'Garamond', 'Times New Roman', 'serif']
|
|
serif: ["Playfair Display", "serif"],
|
|
},
|
|
extend: {
|
|
height: {
|
|
"actual-screen": "var(--height-screen)",
|
|
},
|
|
dropShadow: {
|
|
dark: "0 1px 2px rgba(0, 0, 0, 0.8)",
|
|
},
|
|
fontSize: {
|
|
"huge-1": "95px",
|
|
"huge-2": "max(7.8vw, 120px)",
|
|
},
|
|
colors: {
|
|
"white": "#eee",
|
|
buzzwordsPrimary: "#F6C54B",
|
|
transparentblack: "rgba(0,0,0,0.24)",
|
|
vibrant: {
|
|
DEFAULT: ({ opacityVariable, opacityValue }) => {
|
|
if (opacityValue !== undefined) {
|
|
return `rgba(var(--vibrant), ${opacityValue})`;
|
|
}
|
|
if (opacityVariable !== undefined) {
|
|
return `rgba(var(--vibrant), var(${opacityVariable}, 1))`;
|
|
}
|
|
return "rgb(var(--vibrant))";
|
|
},
|
|
light: ({ opacityVariable, opacityValue }) => {
|
|
if (opacityValue !== undefined) {
|
|
return `rgba(var(--light-vibrant), ${opacityValue})`;
|
|
}
|
|
if (opacityVariable !== undefined) {
|
|
return `rgba(var(--light-vibrant), var(${opacityVariable}, 1))`;
|
|
}
|
|
return "rgb(var(--light-vibrant))";
|
|
},
|
|
dark: ({ opacityVariable, opacityValue }) => {
|
|
if (opacityValue !== undefined) {
|
|
return `rgba(var(--dark-vibrant), ${opacityValue})`;
|
|
}
|
|
if (opacityVariable !== undefined) {
|
|
return `rgba(var(--dark-vibrant), var(${opacityVariable}, 1))`;
|
|
}
|
|
return "rgb(var(--dark-vibrant))";
|
|
},
|
|
},
|
|
muted: {
|
|
DEFAULT: ({ opacityVariable, opacityValue }) => {
|
|
if (opacityValue !== undefined) {
|
|
return `rgba(var(--muted), ${opacityValue})`;
|
|
}
|
|
if (opacityVariable !== undefined) {
|
|
return `rgba(var(--muted), var(${opacityVariable}, 1))`;
|
|
}
|
|
return "rgb(var(--muted))";
|
|
},
|
|
light: ({ opacityVariable, opacityValue }) => {
|
|
if (opacityValue !== undefined) {
|
|
return `rgba(var(--light-muted), ${opacityValue})`;
|
|
}
|
|
if (opacityVariable !== undefined) {
|
|
return `rgba(var(--light-muted), var(${opacityVariable}, 1))`;
|
|
}
|
|
return "rgb(var(--light-muted))";
|
|
},
|
|
dark: ({ opacityVariable, opacityValue }) => {
|
|
if (opacityValue !== undefined) {
|
|
return `rgba(var(--dark-muted), ${opacityValue})`;
|
|
}
|
|
if (opacityVariable !== undefined) {
|
|
return `rgba(var(--dark-muted), var(${opacityVariable}, 1))`;
|
|
}
|
|
return "rgb(var(--dark-muted))";
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|