mirror of
https://github.com/halo-dev/theme-earth.git
synced 2025-10-14 06:21:09 +00:00
33 lines
642 B
JavaScript
33 lines
642 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const { Icons } = require("tailwindcss-plugin-icons");
|
|
module.exports = {
|
|
content: ["./templates/**/*.html", "./src/**/*.ts", "./settings.yaml"],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
lineClamp: {
|
|
7: "7",
|
|
8: "8",
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/aspect-ratio"),
|
|
require("@tailwindcss/typography"),
|
|
Icons(() => ({
|
|
gg: {
|
|
includeAll: true,
|
|
},
|
|
tabler: {
|
|
includeAll: true,
|
|
},
|
|
simpleIcons: {
|
|
includeAll: true,
|
|
},
|
|
bx: {
|
|
includeAll: true,
|
|
},
|
|
})),
|
|
],
|
|
};
|