-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgruvbox.theme.css
83 lines (70 loc) · 3.57 KB
/
gruvbox.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
72
73
74
75
76
77
78
79
80
81
82
83
/**
* @name gruvbox
* @description A gruvbox feel to discord.
* @author seiran
* @version 1.1.0
*/
/* IMPORTANT: make sure to enable dark mode in discord settings for the theme to apply properly!!! */
@import url('https://refact0r.github.io/midnight-discord/midnight.css');
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700');
/* customize things here */
:root {
/* font, change to 'gg sans' for default discord font*/
--font: 'Fira Mono';
/* top left corner text */
--corner-text: 'Seiran';
/* color of status indicators and window controls */
--online-indicator: var(--accent-2); /* change to #23a55a for default green */
--dnd-indicator: #cc241d; /* change to #f13f43 for default red */
--idle-indicator: hsl(50, 60%, 60%); /* change to #f0b232 for default yellow */
--streaming-indicator: hsl(260, 60%, 60%); /* change to #593695 for default purple */
/* accent colors */
--accent-1: #83a598; /* links */
--accent-2: var(--accent-4); /* general unread/mention elements */
--accent-3: var(--text-2); /* accent buttons */
--accent-4: #689d6a; /* accent buttons when hovered */
--accent-5: #d65d0e; /* accent buttons when clicked */
--mention: #3c3836; /* mentions & mention messages */
--mention-hover: #7c6f64; /* mentions & mention messages when hovered */
/* text colors */
--text-0: #fbf1c7; /* text on colored elements */
--text-1: #d5c4a1; /* other normally white text */
--text-2: #458588; /* headings and important text */
--text-3: #fbf1c7; /* normal text */
--text-4: #ebdbb2; /* icon buttons and channels */
--text-5: var(--text-2) ; /* muted channels/chats and timestamps */
/* background and dark colors */
--bg-1: #7c6f64; /* dark buttons when clicked */
--bg-2: #504945; /* dark buttons */
--bg-3: #32302f; /* spacing, secondary elements */
--bg-4: #282828; /* main background color */
--hover: #3c3836; /* channels and buttons when hovered */
--active: var(--bg-2); /* channels and buttons when clicked or selected */
--message-hover: hsla(220, 0%, 0%, 0.1); /* messages when hovered */
/* amount of spacing and padding */
--spacing: 10px;
/* animations */
/* ALL ANIMATIONS CAN BE DISABLED WITH REDUCED MOTION IN DISCORD SETTINGS */
--list-item-transition: 0.1s ease-in-out; /* channels/members/settings hover transition */
--unread-bar-transition: 0.1s ease; /* unread bar moving into view transition */
--moon-spin-transition: 0.2s ease; /* moon icon spin */
--icon-spin-transition: 0.5s ease; /* round icon button spin (settings, emoji, etc.) */
/* corner roundness (border-radius) */
--roundness-xl: 10px; /* roundness of big panel outer corners */
--roundness-l: 10px; /* popout panels */
--roundness-m: 5px; /* smaller panels, images, embeds */
--roundness-s: 5px; /* members, settings inputs */
--roundness-xs: 5px; /* channels, buttons */
--roundness-xxs: 5px; /* searchbar, small elements */
/* direct messages moon icon */
/* change to block to show, none to hide */
--discord-icon: none; /* discord icon */
--moon-icon: block; /* moon icon */
--moon-icon-url: url('https://upload.wikimedia.org/wikipedia/commons/c/c4/Font_Awesome_5_solid_moon.svg'); /* custom icon url */
--moon-icon-size: auto;
/* filter uncolorable elements to fit theme */
/* (just set to none, they're too much work to configure) */
--login-bg-filter: saturate(0.3) hue-rotate(-15deg) brightness(0.4); /* login background artwork */
--green-to-accent-3-filter: hue-rotate(56deg) saturate(1.43); /* add friend page explore icon */
--blurple-to-accent-3-filter: hue-rotate(304deg) saturate(0.84) brightness(1.2); /* add friend page school icon */
}