forked from ornicar/userstyles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zulip.darker-night-mode.user.css
27 lines (26 loc) · 1.02 KB
/
zulip.darker-night-mode.user.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
/* ==UserStyle==
@name Zulip darker night mode
@namespace https://github.com/ornicar/userstyles
@homepageURL https://raw.githubusercontent.com/ornicar/userstyles/master/zulip.darker-night-mode.user.css
@version 1.0.0
@license MIT
@description In a zulip server, make the night mode a bit darker. Change the @-moz-document domain to yours.
@author github.com/ornicar
==/UserStyle== */
@-moz-document domain("hq.lichess.ovh") {
/* darker night mode */
body.night-mode,
body.night-mode #compose,
body.night-mode #message_view_header_underpadding,
body.night-mode #settings_page .form-sidebar,
body.night-mode #settings_page .right,
body.night-mode #subscription_overlay .right,
body.night-mode .app-main,
body.night-mode .column-left .left-sidebar,
body.night-mode .column-middle,
body.night-mode .column-right .right-sidebar,
body.night-mode .floating_recipient .message-header-wrapper,
body.night-mode .header-main {
background-color: hsl(211deg 27% 15%) !important;
}
}