mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-04-23 07:48:58 -05:00
24 lines
545 B
JavaScript
24 lines
545 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: ['selector'],
|
|
content: [
|
|
"./resources/**/*.blade.php",
|
|
"./resources/**/*.js",
|
|
"./resources/**/*.vue",
|
|
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php'
|
|
],
|
|
theme: {
|
|
fontFamily: {
|
|
'sans': ['"Exo 2"', 'ui-sans-serif', 'system-ui']
|
|
},
|
|
extend: {
|
|
colors: {
|
|
'web-main': '#b10101',
|
|
},
|
|
boxShadow: {
|
|
'glow': '0 0 20px 0 rgba(1,1,1,0.3)'
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |