17 lines
367 B
JavaScript
17 lines
367 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./resources/**/*.blade.php',
|
|
'./resources/**/*.js',
|
|
'./resources/**/*.vue',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'crypto-green': '#4CAF50', // For casino vibe
|
|
'dark-bg': '#0D1117', // Stake.com-like dark theme
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |