Button Variants
Primary, secondary, outline, and accent button styles using your brand colors.
/* Button variants using brand colors */
.btn-primary {
background: #8B5CF6;
color: #000000;
}
.btn-secondary {
background: #3B82F6;
color: #000000;
}
.btn-outline {
border: 2px solid #8B5CF6;
color: #8B5CF6;
background: transparent;
}
.btn-accent {
background: #EC4899;
color: #000000;
}