aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/grammarly/darkmode.css
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/grammarly/darkmode.css')
-rw-r--r--recipes/grammarly/darkmode.css69
1 files changed, 69 insertions, 0 deletions
diff --git a/recipes/grammarly/darkmode.css b/recipes/grammarly/darkmode.css
new file mode 100644
index 0000000..eb2306e
--- /dev/null
+++ b/recipes/grammarly/darkmode.css
@@ -0,0 +1,69 @@
1body {
2 background: black;
3}
4
5div[class*='assistant-successLens'] * {
6 color: white;
7}
8
9div[class^='assistant-successLens'] * {
10 color: white;
11}
12
13div[class*='editorContent'] * {
14 background: none;
15 color: white;
16}
17
18div[class*='lensviewContentWrapper'] * {
19 background: none;
20 color: white;
21}
22
23div[class*='assistant-successLens'] {
24 background: none;
25}
26
27div[class*='toolbar'] *
28{
29 background: none;
30}
31
32div[class*='assistant-sidebarWrapper'] *
33{
34 background: none;
35 color: white;
36}
37
38/* Blue text highlight */
39@keyframes fbb6yts {
40 to {
41 background-color: rgb(219,235,255,0.2)
42 }
43}
44/* Red text highlight */
45@keyframes f4cpmj7 {
46 to {
47 background-color:rgba(255,219,227,0.2)
48 }
49}
50
51.fullCard {
52 border-bottom: 1px solid rgba(255,255,255,0.5);
53 border-right: 1px solid rgba(255,255,255,0.2);
54 border-radius: calc(0.5px * var(--rem));
55}
56
57div[class*='miniCard']:hover
58{
59 background: none;
60 border-bottom: 1px solid rgba(255,255,255,0.5);
61 border-right: 1px solid rgba(255,255,255,0.2);
62 border-radius: calc(0.5px * var(--rem));
63}
64
65div[class*='navigation-outcome']:not([data-disabled=true])[data-active=true],
66div[class*='navigation-outcome']:not([data-disabled=true])[data-hovered=true]
67{
68 background: rgba(255,255,255,0.1) !important;
69}