Downloaded theme
This commit is contained in:
25
themes/minimal-black/tailwind.config.js
Normal file
25
themes/minimal-black/tailwind.config.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
darkMode: ["class", '[data-theme="dark"]'],
|
||||
content: [
|
||||
"./layouts/**/*.html",
|
||||
"./exampleSite/content/**/*.{md,html}",
|
||||
"../../content/**/*.{md,html}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
bg: "var(--color-bg)",
|
||||
surface: "var(--color-surface)",
|
||||
text: "var(--color-text)",
|
||||
muted: "var(--color-text-muted)",
|
||||
border: "var(--color-border)",
|
||||
accent: "var(--color-accent)",
|
||||
},
|
||||
maxWidth: {
|
||||
"3xl": "48rem",
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [require("@tailwindcss/typography")],
|
||||
};
|
||||
Reference in New Issue
Block a user