/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./public/index.html", "./resources/**/*.{vue,js}", "./resources/views/**/*.blade.php" ], theme: { extend: { fontFamily: { 'arial': ['Arial', 'sans-serif'], 'roboto': ['Roboto', 'sans-serif'], 'thasadith': ['Thasadith', 'sans-serif'], }, colors: { 'logo-green': 'rgb(var(--color-logo-green) / )', 'kamilcraft-green': 'rgb(var(--color-logo-green) / )', } }, }, plugins: [], }