2024-05-24 02:29:14 -07:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-05-24 21:55:11 -07:00
|
|
|
darkMode: "selector",
|
2024-05-24 02:29:14 -07:00
|
|
|
content: ["./src/**/*.{html,js}"],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ["Inter", "sans-serif"],
|
|
|
|
serif: ["Merriweather", "serif"],
|
|
|
|
},
|
2024-05-24 21:55:11 -07:00
|
|
|
colors: {
|
|
|
|
primary: {
|
|
|
|
dark: "#e2e8f0",
|
|
|
|
light: "#0a0a0a",
|
|
|
|
},
|
|
|
|
secondary: {
|
|
|
|
dark: "#2e1065",
|
|
|
|
light: "#4f46e5",
|
|
|
|
},
|
|
|
|
accent: {
|
|
|
|
dark: "#9ca3af",
|
|
|
|
light: "#78716c",
|
|
|
|
},
|
|
|
|
muted: {
|
|
|
|
dark: "#6b7280",
|
|
|
|
light: "#a8a29e",
|
|
|
|
},
|
|
|
|
background: {
|
|
|
|
light: "#d6d3d1",
|
|
|
|
dark: "#030712",
|
|
|
|
},
|
|
|
|
},
|
2024-05-24 02:29:14 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [require("@tailwindcss/typography")],
|
|
|
|
};
|