-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* Changes the look of the Connected Accounts on Discord Profiles, adds a background synced to the profile theme. */ | ||
/* | ||
Head over to Settings > Accessibility > "Sync profile themes" | ||
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-background: var(--profile-gradient-secondary-color); | ||
} | ||
|
||
[class*="connectedAccountContainer_"] { | ||
border: none; | ||
background: var(--CA-background); | ||
border-radius: var(--CA-radius); | ||
} | ||
[class*="connectedAccountContainer_"] [class*="connectedAccountOpenIcon_"], | ||
[class*="connectedAccountContainer_"] [class*="connectedAccountNameText_"] { | ||
color: var(--CA-icon-color); | ||
} | ||
[class*="connectedAccountContainer_"] [class*="flowerStar_"] path { | ||
fill: var(--CA-checkmark-color); | ||
} | ||
[class*="connectedAccountContainer_"] [class*="childContainer_"]>svg>path { | ||
fill: var(--CA-icon-color); | ||
} |