mirror of
https://github.com/apophenia-news/apophenia.news.git
synced 2026-03-16 19:01:02 +00:00
23 lines
556 B
JavaScript
23 lines
556 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.html", "./src/**/*.js"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
paper: "#fcfcfa",
|
|
ink: "#15151b",
|
|
accent: "#4f46e5",
|
|
soft: "#eef2ff"
|
|
},
|
|
fontFamily: {
|
|
sans: ['"Space Grotesk Variable"', "ui-sans-serif", "system-ui"],
|
|
serif: ['"Source Serif 4"', "ui-serif", "Georgia"]
|
|
},
|
|
boxShadow: {
|
|
card: "0 10px 30px rgba(0,0,0,.06)"
|
|
}
|
|
}
|
|
},
|
|
plugins: [require("@tailwindcss/typography")]
|
|
};
|