Files
BeamMP-Website/tailwind.config.js
2025-12-20 02:34:26 +00:00

19 lines
433 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
'beammp-orange': '#F36D24',
'beammp-white': '#FFFFFF',
'beammp-black': '#000000',
'beammp-gray': '#333333',
'beammp-green': '#1D9749',
'beammp-blue': '#4470B6',
},
},
},
plugins: [],
}