michalvankodev-site/axum_server/tailwind.config.js

45 lines
765 B
JavaScript
Raw Normal View History

2024-02-22 20:13:23 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2024-09-12 15:00:20 +02:00
content: ["./templates/**/**.html"],
2024-08-07 19:21:29 +02:00
theme: {
2024-09-10 21:58:57 +02:00
extend: {
2024-09-13 23:21:51 +02:00
fontFamily: {
sans: [
"Baloo2",
"Comfortaa",
"ui-sans-serif",
"system-ui",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
2024-09-10 21:58:57 +02:00
spacing: {
note: "60rem",
read: "64rem",
2024-09-15 20:38:58 +02:00
image: "min(70rem, 95vw)",
2024-09-12 15:00:20 +02:00
maxindex: "100rem",
2024-09-10 21:58:57 +02:00
},
width: {
note: "60rem",
read: "64rem",
2024-09-15 20:38:58 +02:00
image: "min(70rem, 95vw)",
2024-09-12 15:00:20 +02:00
maxindex: "100rem",
2024-09-10 21:58:57 +02:00
},
2024-09-15 20:38:58 +02:00
fontSize: {
readxl: [
"1.75rem",
{
lineHeight: "2.25rem",
letterSpacing: "-0.015em",
fontWeight: "400",
},
],
},
2024-09-10 21:58:57 +02:00
},
2024-08-07 19:21:29 +02:00
},
plugins: [],
};