mirror of
https://github.com/youwen5/blog.git
synced 2024-11-24 18:03:50 -08:00
37 lines
820 B
JavaScript
37 lines
820 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "selector",
|
|
content: ["./src/**/*.{html,js}"],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Inter", "sans-serif"],
|
|
serif: ["Merriweather", "serif"],
|
|
math: ["Latin Modern Math", "serif"],
|
|
},
|
|
colors: {
|
|
primary: {
|
|
dark: "#e7e5e4",
|
|
light: "#44403c",
|
|
},
|
|
secondary: {
|
|
dark: "#2e1065",
|
|
light: "#4338ca",
|
|
},
|
|
accent: {
|
|
dark: "#9ca3af",
|
|
light: "#78716c",
|
|
},
|
|
muted: {
|
|
dark: "#6b7280",
|
|
light: "#a8a29e",
|
|
},
|
|
background: {
|
|
light: "#d6d3d1",
|
|
dark: "#030712",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("@tailwindcss/typography")],
|
|
}
|