fix: apply bugfix agent improvements to tailwind.config.ts

This commit is contained in:
cupadev-admin 2026-03-09 12:48:23 +00:00
parent f0c66808d5
commit 541afe6c4d
1 changed files with 18 additions and 18 deletions

View File

@ -1,30 +1,30 @@
import type { Config } from 'tailwindcss' import type { Config } from "tailwindcss";
const config: Config = { const config: Config = {
content: [ content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}', "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
'./src/components/**/*.{js,ts,jsx,tsx,mdx}', "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
'./src/app/**/*.{js,ts,jsx,tsx,mdx}', "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
], ],
theme: { theme: {
extend: { extend: {
colors: { colors: {
primary: { primary: {
50: '#f0f9ff', 50: "#eff6ff",
100: '#e0f2fe', 100: "#dbeafe",
500: '#0ea5e9', 200: "#bfdbfe",
600: '#0284c7', 300: "#93c5fd",
700: '#0369a1', 400: "#60a5fa",
900: '#0c4a6e', 500: "#3b82f6",
600: "#2563eb",
700: "#1d4ed8",
800: "#1e40af",
900: "#1e3a8a",
}, },
dark: { },
800: '#1e293b',
900: '#0f172a',
950: '#020617',
}
}
}, },
}, },
plugins: [], plugins: [],
} };
export default config
export default config;