mirror of
https://github.com/axeloz/filesharing.git
synced 2025-05-06 18:13:55 +02:00
22 lines
485 B
JavaScript
22 lines
485 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./resources/**/*.blade.php",
|
|
"./resources/**/*.js",
|
|
"./resources/**/*.vue",
|
|
],
|
|
theme: {
|
|
fontFamily: {
|
|
'display': ['Comfortaa'],
|
|
'title': ['Rajdhani']
|
|
},
|
|
extend: {
|
|
colors: {
|
|
'primary': 'rgb(126 34 206)',
|
|
'primary-light': 'rgb(147 51 234)',
|
|
'primary-superlight': 'rgb(216 180 254)'
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|