41 lines
819 B
JavaScript
41 lines
819 B
JavaScript
// module.exports = {
|
|
// content: ["./**/*.html", "./**/*.templ", "./**/*.go",],
|
|
// theme: { extend: {}, },
|
|
// plugins: [],
|
|
// }
|
|
//
|
|
module.exports = {
|
|
content: ["./**/*.html", "./**/*.templ", "./**/*.go"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
crema: {
|
|
50: "#fdfbf7",
|
|
100: "#f6f1e8",
|
|
200: "#e8dfcf",
|
|
300: "#d8cbb3",
|
|
},
|
|
oliva: {
|
|
100: "#dfe8dc",
|
|
200: "#b7c9b1",
|
|
300: "#8fa789",
|
|
400: "#6f8c6a",
|
|
},
|
|
terracotta: {
|
|
400: "#d17b49",
|
|
500: "#bf6436",
|
|
600: "#a9532c",
|
|
},
|
|
ink: {
|
|
700: "#3a3a37",
|
|
800: "#2a2a28",
|
|
}
|
|
},
|
|
fontFamily: {
|
|
latin: ["ui-serif", "Georgia", "serif"],
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|