From c3cc78b8efe77d84c664c186168e90312a18cfc7 Mon Sep 17 00:00:00 2001 From: Krystal Date: Sat, 24 Aug 2024 14:53:13 -0400 Subject: [PATCH] New Snippet *(First Draft)* --- OtherStuff/RecolorAddFriendsTab.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 OtherStuff/RecolorAddFriendsTab.css diff --git a/OtherStuff/RecolorAddFriendsTab.css b/OtherStuff/RecolorAddFriendsTab.css new file mode 100644 index 0000000..d28d087 --- /dev/null +++ b/OtherStuff/RecolorAddFriendsTab.css @@ -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; +} \ No newline at end of file