at main 332 B view raw
1// Button inherits from page theme context 2// Buttons use semi-transparent backgrounds with borders matching the page theme rules 3export const buttonBase = 'text-2xl font-bold px-8 py-4 transition-colors duration-200 border-2'; 4 5export const buttonVariants = { 6 primary: 'tracking-wider', 7 secondary: 'tracking-wide', 8} as const;