forked from refact0r/midnight-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
midnight.theme.css
55 lines (53 loc) · 2.31 KB
/
midnight.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
/**
* @name midnight
* @description A darkened discord theme.
* @author refact0r
* @version 1.4.0
* @source https://github.com/refact0r/midnight-discord
* @authorId 508863359777505290
*/
@import url('https://refact0r.github.io/midnight-discord/midnight.css');
/* change colors here */
/* a color picker should show up if you hover over the "hsl(x, y, z)" part */
:root {
/* link color */
--link-color: hsl(190, 70%, 60%);
/* main accent color (mentions, folder icons, unread indicators) */
--accent-color: hsl(190, 60%, 50%);
/* darker accent color (background of any accent items with text) */
--accent-background: hsl(190, 60%, 40%);
/* even darker accent color (background of accent buttons when hover) */
--accent-background-2: hsl(190, 60%, 30%);
/* even darker accent color (background of accent buttons when clicked) */
--accent-background-3: hsl(190, 60%, 20%);
/* background of mention text and messages that mention you */
--mention-modifier: hsla(190, 60%, 50%, 0.1);
/* background of messages that mention you on hover */
--mention-hover-modifier: hsla(190, 60%, 50%, 0.05);
/* bright text for colored buttons */
--bright-text: hsl(220, 40%, 90%);
/* header text for headers and certain text */
--header-text: hsl(220, 30%, 70%);
/* main text color (messages, titles, unread text/indicators) */
--primary-text: hsl(220, 15%, 60%);
/* secondary text color (channels, descriptions, buttons) */
--secondary-text: hsl(220, 15%, 40%);
/* muted text color (input box placeholders, muted channels, message times) */
--muted-text: hsl(220, 15%, 24%);
/* background of muted colored buttons on hover */
--muted-background-hover: hsl(220, 15%, 20%);
/* background of muted colored buttons on click */
--muted-background-active: hsl(220, 15%, 16%);
/* background of pretty much everything not using primary background */
--secondary-background: hsl(220, 15%, 13%);
/* main chat/channel list/member list background */
--primary-background: hsl(220, 15%, 10%);
/* overlay background on stuff when hovered over */
--hover-modifier: hsl(230, 20%, 40%, 0.1);
/* overlay background on stuff when clicked or selected */
--active-modifier: hsl(220, 20%, 40%, 0.2);
/* overlay background on messages when hovered over */
--message-hover-modifier: hsl(220, 0%, 0%, 0.1);
/* radius of round corners */
--roundness: 16px;
}