This commit is contained in:
Mirco Wittrien 2022-12-11 12:55:18 +01:00
parent 360f866bd0
commit bf3ea93039
2 changed files with 5 additions and 8 deletions

View File

@ -2,9 +2,6 @@
:root {
--bdfdb-blurple: var(--brand-experiment, hsl(235, calc(var(--saturation-factor, 1) * 85.6%), 64.7%));
--bdfdb-green: hsl(139, calc(var(--saturation-factor, 1) * 47.3%), 43.9%);
--bdfdb-yellow: hsl(38, calc(var(--saturation-factor, 1) * 95.7%), 54.1%);
--bdfdb-red: hsl(359, calc(var(--saturation-factor, 1) * 82.6%), 59.4%);
}
img:not([src]), img[src=""], img[src="null"] {

View File

@ -2,7 +2,7 @@
* @name FriendNotifications
* @author DevilBro
* @authorId 278543574059057154
* @version 1.8.5
* @version 1.8.6
* @description Shows a Notification when a Friend or a User, you choose to observe, changes their Status
* @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien
@ -128,7 +128,7 @@ module.exports = (_ => {
DESKTOP: {
button: 2,
value: 2,
color: "var(--bdfdb-green)"
color: BDFDB.DiscordConstants.ColorVariables["status-positive"]
}
};
@ -340,7 +340,7 @@ module.exports = (_ => {
"Right-Click on an Option to toggle",
BDFDB.ReactUtils.createElement("span", {
className: BDFDB.disCN._friendnotificationstypelabel,
style: {backgroundColor: "var(--bdfdb-green)"},
style: {backgroundColor: BDFDB.DiscordConstants.ColorVariables["status-positive"]},
children: "Desktop"
}),
"Notifications for that User"
@ -365,7 +365,7 @@ module.exports = (_ => {
"Right-Click on an Option Header to toggle",
BDFDB.ReactUtils.createElement("span", {
className: BDFDB.disCN._friendnotificationstypelabel,
style: {backgroundColor: "var(--bdfdb-green)"},
style: {backgroundColor: BDFDB.DiscordConstants.ColorVariables["status-positive"]},
children: "Desktop"
}),
"Notifications for all Users"
@ -388,7 +388,7 @@ module.exports = (_ => {
"/",
BDFDB.ReactUtils.createElement("span", {
className: BDFDB.disCN._friendnotificationstypelabel,
style: {backgroundColor: "var(--bdfdb-green)"},
style: {backgroundColor: BDFDB.DiscordConstants.ColorVariables["status-positive"]},
children: "Desktop"
})
]