2023-10-12 09:56:13 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
export default {
|
|
|
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
|
|
|
theme: {
|
|
|
|
|
fontFamily: {
|
2024-09-25 13:34:57 +02:00
|
|
|
//logo font
|
|
|
|
|
logo: ["Sixtyfour", "system-ui"],
|
|
|
|
|
//headline-title text
|
|
|
|
|
ht: ["Sora", "system-ui"],
|
|
|
|
|
//body text
|
2024-10-14 14:53:11 +02:00
|
|
|
body: ["Jura", "system-ui"],
|
2024-09-25 13:34:57 +02:00
|
|
|
//nav
|
|
|
|
|
tags: ["Raleway", "system-ui"],
|
2023-10-12 09:56:13 +02:00
|
|
|
},
|
2024-01-05 12:52:34 +01:00
|
|
|
fontSize: {
|
2024-01-05 21:57:43 +01:00
|
|
|
title: ["5rem", { lineHeight: "5rem", fontWeight: "900" }],
|
|
|
|
|
titlePhone: ["3rem", { lineHeight: "3rem", fontWeight: "900" }],
|
|
|
|
|
subT: ["3.5rem", { lineHeight: "3.5rem", fontWeight: "800" }],
|
|
|
|
|
subTPhone: ["2.5rem", { lineHeight: "2.5rem", fontWeight: "800" }],
|
|
|
|
|
subTMini: ["1.4rem", { lineHeight: "1.4rem", fontWeight: "900" }],
|
|
|
|
|
subTMiniPhone: ["1.2rem", { lineHeight: "1.2rem", fontWeight: "800" }],
|
2024-01-05 12:52:34 +01:00
|
|
|
tags: ["0.8rem", { fontWeight: "400" }],
|
|
|
|
|
sm: "0.8rem",
|
2024-09-25 13:34:57 +02:00
|
|
|
base: "1.2rem",
|
2024-01-05 12:52:34 +01:00
|
|
|
xl: "1.25rem",
|
|
|
|
|
"2xl": "1.563rem",
|
|
|
|
|
"3xl": "1.953rem",
|
|
|
|
|
"4xl": "2.441rem",
|
|
|
|
|
"5xl": "3.052rem",
|
|
|
|
|
},
|
2023-10-12 09:56:13 +02:00
|
|
|
extend: {
|
|
|
|
|
colors: {
|
2024-09-25 13:34:57 +02:00
|
|
|
neon: "#caebfa",
|
|
|
|
|
bgColor: "#F0F0F3",
|
|
|
|
|
highlight: "#D2D2D2",
|
2023-10-12 09:56:13 +02:00
|
|
|
},
|
2024-09-25 13:34:57 +02:00
|
|
|
//20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
|
|
|
|
|
boxShadow: {
|
2024-10-14 14:53:11 +02:00
|
|
|
box: "8px 8px 16px #cacaca,-8px -8px 16px #f6f6f6",
|
|
|
|
|
// box: "rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;",
|
2024-09-25 13:34:57 +02:00
|
|
|
},
|
|
|
|
|
|
2023-10-12 09:56:13 +02:00
|
|
|
dropShadow: {
|
2024-09-25 13:34:57 +02:00
|
|
|
light: "0 0 5px theme('colors.sky.100')",
|
|
|
|
|
gray: "0 0 9px #8c92a8",
|
|
|
|
|
doublelight: ["0 0 5px #96989a", "0 0 15px #a0d9fa"],
|
|
|
|
|
//doublelight:
|
2023-10-12 09:56:13 +02:00
|
|
|
active: [
|
2024-09-25 13:34:57 +02:00
|
|
|
"0 0 5px theme('colors.sky.300')",
|
|
|
|
|
"0 0 15px theme('colors.sky.100')",
|
2023-10-12 09:56:13 +02:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
};
|