-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Discord11.user.css
56 lines (49 loc) · 2.22 KB
/
Discord11.user.css
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
/* ==UserStyle==
@name Discord 11
@namespace github.com/zuzumi-f/Discord-11
@version 4
@description Based on Windows 11's UI
@author Zuzumi
@updateURL https://github.com/zuzumi-f/Discord-11/raw/main/Discord11.user.css
@preprocessor stylus
@var checkbox messageBuble "Enable Message Bubble Style" 1
@var checkbox win11Emojis "Enable Windows 11 emojis" 1
@var checkbox glassEffect "Enable glass effect (for desktop transparency, the option below must be set to none)" 0
@var checkbox win11Font "Enable Windows 11 font Segoe UI" 1
@var text wallpaperImage "Custom wallpaper link (put link inside single quotes)" "'https://raw.githubusercontent.com/zuzumi-f/Discord-11/main/release/wallpapers/WindowsDark.jpg'"
@var text blurAmount "Blur amount" 24px
@var number opacityAmount "Opacity" [0.6, 0.0, 1.0, 0.1]
@var text serverIconsSize "Server icons size" 48px
@var number hueAmount "Hue amount" [199, 0, 239, 1]
@var range saturationAmount "Saturation amount" [100, 0, 100, 1, '%']
@var range lightnessAmount "Lightness amount" [69, 0, 100, 1, '%']
==/UserStyle== */
@-moz-document regexp("https?:\\/\\/(canary\\.)?discord.com/.*") {
/* Theme base */
@import url(https://zuzumi-f.github.io/Discord-11/base.css);
/* Message bubble style */
if messageBubble==default {
@import url(https://zuzumi-f.github.io/Discord-11/release/messagebubble11.css);
/* Windows 11 emojis */
if win11Emojis {
@import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/Microsoft.css);
}
/* Windows 11 font */
if win11Font {
@import url(https://zuzumi-f.github.io/Discord-11/release/font/windows11font.css);
}
/* Glass effect () */
if glassEffect {
@import url(https://zuzumi-f.github.io/Discord-11/release/glasseffect.css);
}
/* Settings */
:root {
--wallpaper-is: url(wallpaperImage) !important;
--blur-size: blurAmount !important;
--opacity-thing: opacityAmount !important;
--server-size: serverIconsSize !important;
--H: hueAmount !important;
--S: saturationAmount !important;
--L: lightnessAmount !important;
}
}