mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
25 lines
638 B
JavaScript
25 lines
638 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
module.exports = {
|
|
darkMode: "class",
|
|
content: [
|
|
"./resources/**/*.blade.php",
|
|
"./resources/**/*.js",
|
|
"./resources/**/*.vue",
|
|
"./node_modules/flowbite/**/*.js",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: [
|
|
"Inter var",
|
|
"Inter",
|
|
"sans-serif",
|
|
...defaultTheme.fontFamily.sans,
|
|
],
|
|
},
|
|
},
|
|
},
|
|
plugins: [require("flowbite/plugin")],
|
|
};
|