-
Notifications
You must be signed in to change notification settings - Fork 182
style: update GitHub install button and theme toggle styles #324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@ecmasx is attempting to deploy a commit to the Roo Code Team on Vercel. A member of the Team first needs to authorize it. |
|
|
||
| /* GitHub install button colors */ | ||
| --primary-hover: hsl(0 0% 9% / 0.9); | ||
| --primary-hover: 0 0% 9% / 0.9; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensure updated custom properties (e.g. --primary-hover) are wrapped in hsl() where used.
|
|
||
| /* GitHub install button colors for dark mode */ | ||
| --primary-dark-hover: hsl(0 0% 98% / 0.9); | ||
| --primary-dark-hover: 0 0% 98% / 0.9; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typographical error: It appears the CSS function 'hsl' was removed from the '--primary-dark-hover' value. The original value 'hsl(0 0% 98% / 0.9)' seems correct. Please restore the 'hsl(' part.
| --primary-dark-hover: 0 0% 98% / 0.9; | |
| --primary-dark-hover: hsl(0 0% 98% / 0.9); |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
daniel-lxs
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM


Important
Update styles for GitHub install button and theme toggle to use HSL color functions and add transitions for smoother interactions.
background,color, andhoverstyles instyles.module.cssto usehsl(var(--variable))for consistency.transition: all 0.2s easeandscale: 1.05on hover for smoother interaction.background-colorandcoloron hover instyles.module.cssto usehsl(var(--variable))for consistency.box-shadowforfocus-visiblestate to usehsl(var(--ring)).hsl()wrapper from--primary-hoverand--primary-dark-hoverincustom.cssfor consistency.This description was created by
for f55b318. You can customize this summary. It will automatically update as commits are pushed.