Skip to content

Commit

Permalink
Update PrettyCA.css
Browse files Browse the repository at this point in the history
  • Loading branch information
ukriu authored Apr 26, 2024
1 parent e1bb755 commit f65efde
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions Other/PrettyCA.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,28 @@ And turn on the option.
If your theme is mainly dark/light, change the text color accordingly.
*/
[class*="connectedAccountContainer_"] {
--CA-radius: 16px;
--CA-icon-color: white;
--CA-checkmark-color: rgba(0, 0, 0, 0.65);
--CA-radius: 16px;
--CA-icon-color: white;
--CA-checkmark-color: rgba(0, 0, 0, 0.65);
--CA-background: var(--profile-gradient-secondary-color);
/* Alternatively, you can have var(--profile-gradient-primary-color), but it might blend in with the profile and not stand out. */
}

[class*="connectedAccountContainer_"] {
border: none;
background: var(--CA-background);
border-radius: var(--CA-radius);
border: none;
background: var(--CA-background);
border-radius: var(--CA-radius);
}

[class*="connectedAccountContainer_"] [class*="connectedAccountOpenIcon_"],
[class*="connectedAccountContainer_"] [class*="connectedAccountNameText_"] {
color: var(--CA-icon-color);
color: var(--CA-icon-color);
}

[class*="connectedAccountContainer_"] [class*="flowerStar_"] path {
fill: var(--CA-checkmark-color);
fill: var(--CA-checkmark-color);
}

[class*="connectedAccountContainer_"] [class*="childContainer_"]>svg>path {
fill: var(--CA-icon-color);
fill: var(--CA-icon-color);
}

0 comments on commit f65efde

Please sign in to comment.