27 lines
641 B
JavaScript
27 lines
641 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{ts,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
deep: "#14171F",
|
|
panel: "#1E2230",
|
|
panel2: "#262B3D",
|
|
ink: "#EDE6D6",
|
|
inkdim: "#A9A4956e".slice(0, 7),
|
|
brass: "#C9A227",
|
|
ember: "#B4523A",
|
|
moss: "#5F7A61",
|
|
dusk: "#4E6A87",
|
|
plum: "#7A5670",
|
|
},
|
|
fontFamily: {
|
|
display: ["Fraunces", "Georgia", "serif"],
|
|
body: ["Inter", "system-ui", "sans-serif"],
|
|
mono: ["IBM Plex Mono", "monospace"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|