-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlinks.css
More file actions
65 lines (64 loc) · 2.16 KB
/
links.css
File metadata and controls
65 lines (64 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* Makes discord links blurple */
div[id^=message-content] > a[href^="https://discord.com"],
div[id^=message-content] > a[href^="https://canary.discord.com"],
div[id^=message-content] > a[href^="https://ptb.discord.com/"],
div[id^=message-content] > a[href^="https://discordapp.com"],
div[id^=message-content] > a[href^="https://cdn.discord.com"],
div[id^=message-content] > a[href^="https://cdn.discordapp.com"],
div[id^=message-content] > a[href^="https://dis.gd"],
div[id^=message-content] > a[href^="https://discord.gg"]
{
color: var(--bg-brand);
}
/* Makes spotify links green */
div[id^=message-content] > a[href^="https://spotify.com"],
div[id^=message-content] > a[href^="https://open.spotify.com"],
div[id^=message-content] > a[href^="https://spotify.link"]
{
color: rgb(24, 185, 81);
}
/* Makes steam links steam blue */
div[id^=message-content] > a[href^="https://steampowered.com"],
div[id^=message-content] > a[href^="https://store.steampowered.com"],
div[id^=message-content] > a[href^="https://steamcommunity.com"]
{
color: rgb(32, 105, 164);
}
/* Makes youtube links red */
div[id^=message-content] > a[href^="https://youtu.be"],
div[id^=message-content] > a[href^="https://youtube.com"],
div[id^=message-content] > a[href^="https://www.youtube.com"]
{
color: rgb(255, 62, 62);
}
/* Makes osu links pink */
div[id^=message-content] > a[href^="https://osu.ppy.sh"]
{
color: rgb(242, 97, 159);
}
/* makes ripley fucking pink */
div[id^=message-content] > a[href^="https://zen.anekodot.lol"]
{
color: #fcc7d4;
}
/* Makes google links yellow */
div[id^=message-content] > a[href^="https://google.com/"],
div[id^=message-content] > a[href^="https://goog.gl/"]
{
color: rgb(251, 188, 4);
}
/* Makes github links light-gray */
div[id^=message-content] > a[href^="https://github.com"],
div[id^=message-content] > a[href^="https://gist.github.com/"]
{
color: rgb(172, 172, 172);
}
/* Make Soundcloud links orange */
div[id^=message-content] > a[href^="https://on.soundcloud.com"],
div[id^=message-content] > a[href^="https://soundcloud.com"]
{
color: rgb(255, 93, 0);
}
.messagelogger-deleted [class*="contents"] > :is(div, h1, h2, h3, p) {
color: rgb(80, 80, 80) !important;
}