Changes for #88

Fix tooltip foreground.
Change light mode foreground colours.
Update ::selection styles.
This commit is contained in:
Paul
2021-08-19 14:50:00 +01:00
parent 762cad1614
commit db43c02e01
5 changed files with 12 additions and 11 deletions

View File

@@ -21,18 +21,18 @@
}
::selection {
background: var(--accent);
color: var(--foreground);
background: var(--foreground);
color: var(--background);
}
::-moz-selection {
background: var(--accent);
color: var(--foreground);
background: var(--foreground);
color: var(--background);
}
::-webkit-selection {
background: var(--accent);
color: var(--foreground);
background: var(--foreground);
color: var(--background);
}
a,

View File

@@ -7,6 +7,7 @@
@import "tippy.js/dist/tippy.css";
.tippy-box {
color: var(--foreground);
background: var(--secondary-background);
}