UPIF-Demo / web_client /tailwind.config.js
yashsecdev's picture
Deploy: Limitless UPIF Stack (Docker/FastAPI/React)
b28041c
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
brand: {
dark: "#020617",
primary: "#3b82f6",
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['Fira Code', 'monospace'],
}
},
},
plugins: [],
}