Files
agent-evals/frontend/tailwind.config.js
Evan Reichard 114fa556eb fix: fix light/dark/system theme switcher
- Add darkMode: class to tailwind config for class-based dark mode
- Load saved theme from localStorage on mount and apply immediately
- Add media query listener for system theme changes in system mode
2026-02-06 17:13:18 -05:00

14 lines
202 B
JavaScript

export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
}