We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c42803b commit 9e63b6fCopy full SHA for 9e63b6f
README.md
@@ -21,6 +21,7 @@ on top of the file.
21
- `highlight-bold-darkmode.css`: Highlight bold darkmode: Bold text in dark mode doesn't stand out very much, so
22
this snippets makes it underlined and all-caps.
23
- `justified.css`: Justify all text in obsidian
24
+- `bright_hrs_darkmode.css`: Make sure that `<hr/>`s show up bright in dark theme
25
26
[obsidian]: https://obsidian.md/
27
[sanctum]: https://github.com/jdanielmourao/obsidian-sanctum/
bright_hrs_darkmode.css
@@ -0,0 +1,4 @@
1
+/* Make sure that hr lines show up bright in dark theme */
2
+.theme-dark .cm-line hr {
3
+ border-color: #7e7f7f;
4
+}
0 commit comments