-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYouTubeMusicTheme.css
170 lines (138 loc) · 3.8 KB
/
YouTubeMusicTheme.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/**
* YouTube-Inspired Discord Theme
* A softer take on YouTube's red theme with better readability and reduced eye strain
*/
/* Custom Properties for easy color management */
:root {
/* Primary Colors - Softened YouTube red palette */
--primary-dark: #8B0000; /* Deep red for main backgrounds */
--primary-base: #CC0000; /* Main brand color, softened YouTube red */
--primary-light: #FF4444; /* Lighter accents */
/* Neutral Colors */
--bg-darkest: #1A1A1A; /* Main background */
--bg-darker: #242424; /* Secondary background */
--bg-dark: #2F2F2F; /* Tertiary background */
--bg-light: #383838; /* Interactive elements background */
/* Text Colors */
--text-brightest: #FFFFFF; /* Primary text */
--text-bright: #E5E5E5; /* Secondary text */
--text-muted: #AAAAAA; /* Muted text */
/* Interactive Colors */
--interactive-hover: #FF6666; /* Hover state */
--interactive-active: #990000;/* Active state */
/* Status Colors */
--online: #43B581; /* Online status */
--idle: #FAA61A; /* Idle status */
--dnd: #F04747; /* Do Not Disturb status */
--offline: #747F8D; /* Offline status */
}
/* App Background */
.app-2rEoOp {
background-color: var(--bg-darkest);
}
/* Servers List */
.guilds-1SWlCJ {
background-color: var(--bg-darker);
}
.circleIconButton-1QV--U {
background-color: var(--primary-base);
color: var(--text-brightest);
}
/* Channels List */
.sidebar-2K8pFh {
background-color: var(--bg-dark);
}
.containerDefault--pIXnN {
color: var(--text-bright);
}
/* Chat Area */
.chat-3bRxxu {
background-color: var(--bg-darkest);
}
/* Message Area */
.message-2qnXI6 {
background-color: transparent;
transition: background-color 0.2s ease;
}
.message-2qnXI6:hover {
background-color: var(--bg-light);
}
/* Input Box */
.channelTextArea-rNsIhG {
background-color: var(--bg-dark);
}
.scrollableContainer-2NUZem {
background-color: var(--bg-light);
}
/* Buttons and Interactive Elements */
.button-1YfofB {
background-color: var(--primary-base);
color: var(--text-brightest);
transition: background-color 0.2s ease;
}
.button-1YfofB:hover {
background-color: var(--interactive-hover);
}
.button-1YfofB:active {
background-color: var(--interactive-active);
}
/* Member List */
.members-1998pB {
background-color: var(--bg-dark);
}
.member-3-YXUe {
transition: background-color 0.2s ease;
}
.member-3-YXUe:hover {
background-color: var(--bg-light);
}
/* Server Header */
.header-2V-4Sw {
background-color: var(--bg-darker);
border-bottom: 1px solid var(--primary-dark);
}
/* Channel Header */
.title-3qD0b- {
background-color: var(--bg-darkest);
border-bottom: 1px solid var(--primary-dark);
}
/* Mentions and Links */
.mention {
color: var(--primary-light);
background-color: rgba(204, 0, 0, 0.1);
}
.mention:hover {
background-color: rgba(204, 0, 0, 0.2);
}
/* Status Indicators */
.status-1AY8sU {
&.online-2S838R { background-color: var(--online); }
&.idle-3DEnRT { background-color: var(--idle); }
&.dnd-1_xrcq { background-color: var(--dnd); }
&.offline-3qoTek { background-color: var(--offline); }
}
/* Animations */
.container-1D34oG,
.button-1YfofB,
.member-3-YXUe {
transition: all 0.2s ease;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background-color: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
background-color: var(--primary-dark);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--primary-base);
}
/* Selection Color */
::selection {
background-color: var(--primary-base);
color: var(--text-brightest);
}