fix: new button light theme

This commit is contained in:
Anirudh 2025-01-07 04:12:03 +00:00
parent 1eb17a0ac5
commit f38bf79e54

View File

@ -102,26 +102,27 @@
.light .gradient-button-bg { .light .gradient-button-bg {
background: radial-gradient( background: radial-gradient(
circle at top, circle at top,
#262626 0%, #f5f5f5 0%, /* Very light gray */
#f5f5f5 50% #e0e0e0 50% /* Soft gray */
); /* Dark gray -> Light gray */ );
} }
.light .gradient-button { .light .gradient-button {
background: radial-gradient( background: radial-gradient(
circle at bottom, circle at bottom,
hsl(0, 10%, 25%) -10%, hsl(0, 0%, 85%) -10%, /* Slightly darker gray */
#9d9d9d 50% hsl(0, 0%, 95%) 50% /* Very soft light gray */
); /* Light gray -> Almost white */ );
} }
.light .gradient-button-bg > div:hover { .light .gradient-button-bg > div:hover {
background: radial-gradient( background: radial-gradient(
circle at bottom, circle at bottom,
hsl(0, 10%, 25%) -10%, hsl(0, 0%, 80%) -10%, /* Slightly darker gray for hover */
#9d9d9d 80% hsl(0, 0%, 90%) 80% /* Softer gray */
); /* Light gray -> Almost white */ );
} }
.inline-decoration::before { .inline-decoration::before {
content: "Generate"; content: "Generate";
color: #525252; color: #525252;