This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
forked from refact0r/midnight-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrimson-night.theme.css
71 lines (61 loc) · 2.38 KB
/
crimson-night.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
64
65
66
67
68
69
70
71
/**
* @name crimson night
* @description A darkened and modified discord theme.
* @author Nitroless (original: refact0r)
* @version 1.1.0
* @source https://github.com/NitrolessWasTaken/crimson-night-discord
* @authorId 372798939209924618
*/
/* IMPORTANT: make sure to enable dark mode in discord settings for the theme to apply properly!! */
@import url('https://raw.githubusercontent.com/NitrolessWasTaken/crimson-night-discord/master/crimson-night.css');
/* change colors and variables here */
:root {
/* amount of spacing and padding */
--spacing: 12px;
/* radius of round corners */
--roundness: 16px;
/* color of links */
--accent-1: hsl(0, 80%, 60%);
/* color of unread dividers and some indicators */
--accent-2: hsl(0, 60%, 55%);
/* color of accented buttons */
--accent-3: hsl(0, 60%, 55%);
/* color of accented buttons when hovered */
--accent-4: hsl(0, 60%, 40%);
/* color of accented buttons when clicked */
--accent-5: hsl(0, 60%, 30%);
/* color of mentions and messages that mention you */
--mention: hsla(0, 80%, 80%, 0.1);
/* color of mentions and messages that mention you when hovered */
--mention-hover: hsla(0, 80%, 80%, 0.05);
/* color of bright text on colored buttons */
--text-1: hsl(220, 40%, 90%);
/* color of headings and important text */
--text-2: hsl(220, 25%, 70%);
/* color of normal text */
--text-3: hsl(220, 15%, 60%);
/* color of icon buttons and channels */
--text-4: hsl(220, 15%, 40%);
/* color of muted channels/chats and timestamps */
--text-5: hsl(220, 15%, 25%);
/* color of dark buttons when clicked */
--bg-1: hsl(220, 15%, 20%);
/* color of dark buttons */
--bg-2: hsl(220, 15%, 16%);
/* color of spacing around panels and secondary elements */
--bg-3: hsl(220, 15%, 13%);
/* main background color */
--bg-4: hsl(220, 15%, 10%);
/* color of channels and icon buttons when hovered */
--hover: hsla(230, 20%, 40%, 0.1);
/* color of channels and icon buttons when clicked or selected */
--active: hsla(220, 20%, 40%, 0.2);
/* color of messages when hovered */
--message-hover: hsla(220, 0%, 0%, 0.1);
/* font */
--font-primary: 'figtree'; /* change to 'gg sans' for default discord font */
--font-display: 'figtree'; /* change to 'gg sans' for default discord font */
/* top left icon */
--moon-icon: block; /* change to 'none' to hide moon icon */
--discord-icon: none; /* change to 'block' to show default discord icon */
}