kamilcraft-api/tailwind.config.js

22 lines
585 B
JavaScript
Vendored

/** @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) / <alpha-value>)'
}
},
},
plugins: [],
}