New Snippet *(First Draft)*

This commit is contained in:
Indiana Jone (Indi) 2024-08-24 14:53:13 -04:00
parent 2a446f9868
commit c3cc78b8ef

View file

@ -0,0 +1,22 @@
/**
* @name RecolorAddFriendsTab
* @author krystalskullofficial
* @version 2.0
* @description Recolors the Add Friends Tab on discord *(because being able to add people isnt that important)*
*/
[data-tab-id=ADD_FRIEND]{
background-color: var(--background-color) !important;
color: var(--interactive-normal) !important;
}
[data-tab-id=ADD_FRIEND]:hover{
background-color: var(--background-modifier-hover) !important;
color: var(--interactive-hover) !important;
}
[data-tab-id=ADD_FRIEND][aria-selected=true]{
background-color: var(--background-modifier-selected) !important;
color: var(--interactive-active) !important;
}
[data-tab-id=ADD_FRIEND][aria-selected=true]:hover{
background-color: var(--background-modifier-hover) !important;
color: var(--interactive-active) !important;
}