mirror of
https://github.com/KrstlSkll69/vc-snippets.git
synced 2025-04-19 20:55:22 +02:00
27 lines
No EOL
883 B
CSS
27 lines
No EOL
883 B
CSS
/**
|
|
* @name Synced With Game Recolor
|
|
* @author krystalskullofficial
|
|
* @description Recolors the icon for Channels that are synced with games so they are easier to see/notice.
|
|
* @version 2.0.0
|
|
* @authorId 929208515883569182
|
|
* @website https://krstlskll69.github.io/
|
|
* @source https://github.com/KrstlSkll69/vc-snippets?tab=readme-ov-file#13th-synced-with-game-recolor-
|
|
*/
|
|
|
|
/*
|
|
* TODO: Find a built in Discord Var for this, instead of making my own.
|
|
* SRC: https://docs.betterdiscord.app/discord/variables
|
|
*/
|
|
|
|
:root{
|
|
--Custom-Color-Controller: oklch(89.08% 0.1185 141.18)
|
|
}
|
|
|
|
[class^=icon__] path[d^="M24 5.7c0-1.54-.2-2.66-.34-3.23C23.35"] {
|
|
fill: var(--Custom-Color-Controller) !important;
|
|
}
|
|
|
|
/*--- Stupid Ahh channel search icon ---*/
|
|
[class^=searchResultChannelIcon__] path[d^="M24 5.7c0-1.54-.2-2.66-.34-3.23C23.35" ] {
|
|
fill: var(--Custom-Color-Controller) !important;
|
|
} |