Files
Slutprojekt-Webbutveckling-…/tailwind.config.js
T
phille06 f913a78b86
Deploy static content to Pages / deploy (push) Has been cancelled
feat: satt upp Vite + React + TypeScript + TailwindCSS
2026-03-25 00:21:55 +01:00

19 lines
334 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#E10600',
'primary-hover': '#B10500',
'primary-subtle': '#FCE8E6',
},
},
},
plugins: [],
}