blog/tailwind.config.js

37 lines
774 B
JavaScript
Raw Permalink Normal View History

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: {
2024-05-25 12:47:40 -07:00
dark: "#e7e5e4",
light: "#44403c",
2024-05-24 21:55:11 -07:00
},
secondary: {
dark: "#4c1d95",
2024-05-25 12:47:40 -07:00
light: "#4338ca",
2024-05-24 21:55:11 -07:00
},
accent: {
dark: "#9ca3af",
light: "#78716c",
},
muted: {
dark: "#6b7280",
light: "#a8a29e",
},
background: {
light: "#d6d3d1",
2024-05-25 14:23:59 -07:00
dark: "#101017",
2024-05-24 21:55:11 -07:00
},
},
2024-05-24 02:29:14 -07:00
},
},
plugins: [require("@tailwindcss/typography")],
}