aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/grammarly/darkmode.css
blob: eb2306e6f5d85d4a555f2cfb71ac5e2dcb1e6565 (plain) (blame)
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
body {
  background: black;
}

div[class*='assistant-successLens'] * {
  color: white;
}

div[class^='assistant-successLens'] * {
  color: white;
}

div[class*='editorContent'] * {
  background: none;
  color: white;
}

div[class*='lensviewContentWrapper'] * {
  background: none;
  color: white;
}

div[class*='assistant-successLens'] {
  background: none;
}

div[class*='toolbar'] *
{
  background: none;
}

div[class*='assistant-sidebarWrapper'] *
{
  background: none;
  color: white;
}

/* Blue text highlight */
@keyframes fbb6yts {
 to {
  background-color: rgb(219,235,255,0.2)
 }
}
/* Red text highlight */
@keyframes f4cpmj7 {
 to {
  background-color:rgba(255,219,227,0.2)
 }
}

.fullCard {
  border-bottom: 1px solid rgba(255,255,255,0.5);
  border-right: 1px solid rgba(255,255,255,0.2);
  border-radius: calc(0.5px * var(--rem));
}

div[class*='miniCard']:hover 
{
  background: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  border-right: 1px solid rgba(255,255,255,0.2);
  border-radius: calc(0.5px * var(--rem));
}

div[class*='navigation-outcome']:not([data-disabled=true])[data-active=true],
div[class*='navigation-outcome']:not([data-disabled=true])[data-hovered=true]
{
  background: rgba(255,255,255,0.1) !important;
}