Skip to content
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

fix(twitch): link color, usercard and privacy center fixes #1444

Merged
merged 8 commits into from
Nov 13, 2024
66 changes: 57 additions & 9 deletions styles/twitch/catppuccin.user.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@name Twitch Catppuccin
@namespace github.com/catppuccin/userstyles/styles/twitch
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/twitch
@version 1.4.1
@version 1.4.2
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/twitch/catppuccin.user.css
@supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Atwitch
@description Soothing pastel theme for Twitch
Expand Down Expand Up @@ -247,14 +247,11 @@
--color-text-button-disabled: @subtext0;
}

&,
[class*="ScTokenOverrideCSSVars"] {
mxgic1337 marked this conversation as resolved.
Show resolved Hide resolved
--color-text-link: @blue;
--color-text-link-active: @sky;
--color-text-link-focus: @sky;
--color-text-link-hover: @sky;
--color-text-link-visited: @lavender;
}
--color-text-link: @accent-color;
--color-text-link-active: @accent-color;
--color-text-link-focus: @accent-color;
--color-text-link-hover: @accent-color;
--color-text-link-visited: @accent-color;
mxgic1337 marked this conversation as resolved.
Show resolved Hide resolved

&,
[class*="ScAccentRegionCssVars"] {
Expand Down Expand Up @@ -463,6 +460,18 @@
color: @text !important;
}

/* Usercard mod log tabs */

.viewer-card-mod-drawer-tab--active {
box-shadow: 0 calc(var(--border-width-default) * -3) 0 @accent-color inset !important;
}

/* Usercard header */

.viewer-card-header__overlay {
background-color: fade(@mantle, 60%) !important;
}

/* PiP username */

div.mini-overlay__title span {
Expand Down Expand Up @@ -680,6 +689,45 @@
.modal__content {
color: @text;
}

/* Leaderboard highlighted username */
.bits-leaderboard-expanded-top-three-entry__marquee-username .gRUYWI {
mxgic1337 marked this conversation as resolved.
Show resolved Hide resolved
color: @base !important;
}

/* Privacy center */

.evszEp {
background: @base !important;
}

.jTEslw {
background: @base !important;
}

.evszEp,
.jTEslw {
svg path {
fill: @accent-color !important;
&[fill="#fff"],
&[fill="#FFF"] {
fill: none !important;
}
}
}
mxgic1337 marked this conversation as resolved.
Show resolved Hide resolved

.privacy-center-root__number-item {
background: @accent-color;
color: @base;
}

.privacy-center-accordion {
border-color: @accent-color;
}

.home-page__title {
color: @text !important;
}
}
}

Expand Down
Loading