mirror of
https://github.com/apophenia-news/apophenia.news.git
synced 2026-03-17 03:11:01 +00:00
Feat: Tailwind content and typography theme
This commit is contained in:
22
tailwind.config.js
Normal file
22
tailwind.config.js
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
/** @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")]
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user