DCSOlympus/frontend/react/tailwind.config.js
2024-03-30 08:40:02 +01:00

19 lines
271 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
background: {
steel: "#202831"
}
}
},
},
plugins: [],
}