mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 07:20:09 +00:00
31 lines
688 B
JavaScript
31 lines
688 B
JavaScript
import defaultTheme from 'tailwindcss/defaultTheme';
|
|
import forms from '@tailwindcss/forms';
|
|
import presets from './vendor/filament/support/tailwind.config.preset';
|
|
import typography from '@tailwindcss/typography';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
presets: [presets],
|
|
|
|
content: [
|
|
'./app/Filament/**/*.php',
|
|
'./resources/views/**/*.blade.php',
|
|
'./vendor/filament/**/*.blade.php',
|
|
],
|
|
|
|
darkMode: 'class',
|
|
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
},
|
|
},
|
|
|
|
plugins: [
|
|
forms,
|
|
typography,
|
|
],
|
|
}
|