og-r1delta-serverlist/tailwind.config.js
2025-05-13 23:43:51 +08:00

20 lines
No EOL
380 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'titanfall': {
'primary': '#1a1a1a',
'secondary': '#2d2d2d',
'accent': '#9A333E',
'highlight': '#FF4655'
}
}
},
},
plugins: [],
}