mirror of
https://github.com/HK560/R1DeltaServerList.git
synced 2026-08-01 00:12:00 -04:00
20 lines
No EOL
380 B
JavaScript
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: [],
|
|
}
|