-
Notifications
You must be signed in to change notification settings - Fork 3
/
airtable-com_dark-theme.user.css
55 lines (44 loc) · 1.63 KB
/
airtable-com_dark-theme.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
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
/* ==UserStyle==
@name airtable.com dark theme
@description Dark theme for airtable.com. Beta quality, beware of 🐛.
@author Heracles Papatheodorou <[email protected]> (https://heracl.es)
@namespace https://heracl.es
@homepageURL https://github.com/Arty2/userstyles
@updateURL https://raw.githubusercontent.com/Arty2/userstyles/master/airtable-com_dark-theme.user.css
@supportURL https://github.com/Arty2/userstyles/issues
@version 0.1.0
@license MIT License
@preprocessor default
@var text airt-text-color "Text color (RGB)" "0, 0, 0"
@var text airt-border-color "Border color (RGB)" "255, 255, 255"
@var text airt-card-color "Card background color (RGB)" "39, 40, 43"
@var text airt-kanban-color "Kanban background color (RGBA)" "0, 0, 0, 0"
==/UserStyle== */
@-moz-document domain("airtable.com") {
/* ==========================================================================
Set default background colors and borders
========================================================================== */
/* in kanban board */
#kanbanView {
background: rgba(var(--airt-kanban-color));
}
/* ==========================================================================
Invert colors
========================================================================== */
#hyperbaseContainer {
filter: invert(100%);
}
#hyperbaseContainer .white {
filter: invert(100%);
}
#hyperbaseContainer img,
#hyperbaseContainer button { /* revert images back to normal */
filter: invert(100%);
}
.appTopBarContainer .userIcon {
filter: invert(100%);
}
#hyperbaseContainer .pill,
#hyperbaseContainer .colorOption {
}
}