23 lines
671 B
JavaScript
Vendored
23 lines
671 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>)',
|
|
'kamilcraft-green': 'rgb(var(--color-logo-green) / <alpha-value>)',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|