This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
/
glass_local.theme.css
63 lines (57 loc) · 1.95 KB
/
glass_local.theme.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
57
58
59
60
61
62
63
/**
* @name Vibrant Glass
* @version 1.1
* @description Simple customizable glass theme.
* @author Kaynooo#8080
*
* @source https://github.com/Kayno0o/vibrant-glass-theme
**/
/*
__ ___ _ _ _____ _
\ \ / (_) | | | / ____| |
\ \ / / _| |__ _ __ __ _ _ __ | |_ | | __| | __ _ ___ ___
\ \/ / | | '_ \| '__/ _` | '_ \| __| | | |_ | |/ _` / __/ __|
\ / | | |_) | | | (_| | | | | |_ | |__| | | (_| \__ \__ \
\/ |_|_.__/|_| \__,_|_| |_|\__| \_____|_|\__,_|___/___/
*/
@import url("https://raw.githack.com/Kayno0o/vibrant-glass-theme/main/glass_remote.theme.css");
/*
to customize rgb color : https://www.google.com/search?q=color+picker and copy the RGB thing
to create custom gradient : https://cssgradient.io/ and copy the linear-gradient
*/
/* DEFINE MAIN VARIABLES */
.theme-dark {
/*
name of the Discord window (top left)
default : "Vibrant Glass" */
--window-name: "Vibrant Glass";
/*
color of the Discord window name
default : rgb(255, 255, 255) */
--window-name-color: rgb(255, 255, 255);
/*
opacity, but lighter
default : 0.2 */
--light-opacity: 0.2;
/*
opacity used everywhere to make this glass effect
default : 0.5 */
--opacity: 0.5;
/*
opacity, but darker
default : 0.75 */
--dark-opacity: 0.75;
/*
it's just the Discord background URL, it has to be a direct link (ending with .png, .jpg, .gif)
default : url('https://cdn.discordapp.com/attachments/696040243748536401/850445513542205531/1-IrFMpUu.png') */
--background-url: url('https://cdn.discordapp.com/attachments/696040243748536401/850445513542205531/1-IrFMpUu.png');
/*
background color used for opacity
default : 0, 0, 0 */
--background-color: 0, 0, 0;
}
/* BACKGROUND */
[class^="bg"] {
background: var(--background-url) !important;
background-size: cover !important;
}