24 lines
490 B
JavaScript
24 lines
490 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{js,jsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ink: {
|
|
bg: "#14110f",
|
|
panel: "#1d1916",
|
|
edge: "#2c2622",
|
|
muted: "#9a8c7d",
|
|
text: "#ede4d8",
|
|
accent: "#d9a441",
|
|
accent2: "#b9763f",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
serif: ["Georgia", "Cambria", "serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|