/** @type {import('tailwindcss').Config} */ export default { darkMode: 'class', content: ['./src/renderer/**/*.{html,ts,tsx}'], theme: { extend: { colors: { brand: { DEFAULT: '#5b7cfa', dark: '#3f5ad6' } } } }, plugins: [] }