/** @type {import('tailwindcss').Config} */ export default { content: ['./src/renderer/index.html', './src/renderer/**/*.{vue,js,ts,jsx,tsx}'], darkMode: 'class', theme: { extend: { colors: { primary: { DEFAULT: '#000', light: '#fff', dark: '#000' }, secondary: { DEFAULT: '#6c757d', light: '#8c959e', dark: '#495057' }, dark: { DEFAULT: '#000', 100: '#161616', 200: '#2d2d2d', 300: '#3d3d3d' }, light: { DEFAULT: '#fff', 100: '#f8f9fa', 200: '#e9ecef', 300: '#dee2e6' } } } }, plugins: [] };