mirror of
https://github.com/phpmon/website
synced 2025-11-05 03:20:05 +01:00
22 lines
410 B
JavaScript
22 lines
410 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./resources/**/*.blade.php",
|
|
"./resources/**/*.js",
|
|
"./resources/**/*.vue",
|
|
],
|
|
theme: {
|
|
fontFamily: {
|
|
'sans': ['Inter', 'sans-serif']
|
|
},
|
|
extend: {
|
|
colors: {
|
|
'primary': '#4894FC',
|
|
'light': '#BBD8FD',
|
|
'dim': '#ECF4FE'
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|