import type { Config } from 'tailwindcss'; // We want each package to be responsible for its own content. const config: Omit = { theme: { extend: { backgroundImage: { 'glow-conic': 'conic-gradient(from 180deg at 50% 50%, #2a8af6 0deg, #a853ba 180deg, #e92a67 360deg)', }, colors: { background: 'var(--background)', foreground: 'var(--foreground)', }, }, }, plugins: [], }; export default config;