28 lines
699 B
JavaScript
28 lines
699 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{html,njk,md,js}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ink: "#071323",
|
|
muted: "#637083",
|
|
paper: "#f7f8fc",
|
|
line: "#dde3ed",
|
|
flame: "#f97316",
|
|
ember: "#b94700",
|
|
azure: "#006ee6",
|
|
navy: "#061832"
|
|
},
|
|
fontFamily: {
|
|
sans: ["Inter", "ui-sans-serif", "system-ui", "sans-serif"],
|
|
display: ["Rajdhani", "Inter", "ui-sans-serif", "system-ui", "sans-serif"]
|
|
},
|
|
boxShadow: {
|
|
soft: "0 18px 50px rgba(15, 35, 63, 0.12)",
|
|
panel: "0 22px 70px rgba(6, 24, 50, 0.22)"
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|