mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 05:14:04 +00:00
24 lines
506 B
JavaScript
Vendored
24 lines
506 B
JavaScript
Vendored
const colors = require("tailwindcss/colors");
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
module.exports = {
|
|
purge: ["./resources/views/**/*.blade.php"],
|
|
|
|
mode: "jit",
|
|
|
|
darkMode: "class",
|
|
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["iA Writer Quattro S", ...defaultTheme.fontFamily.sans],
|
|
},
|
|
|
|
colors: {
|
|
...colors,
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|