1.8.0 ready
BIN
GarbledGif.gif
|
Before Width: | Height: | Size: 3.7 MiB After Width: | Height: | Size: 1.1 MiB |
BIN
GitCapture.png
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 63 KiB |
12
README.md
|
|
@ -1,6 +1,11 @@
|
|||
## About
|
||||

|
||||
sQdthOne is a Obsidian MD theme with light and dark modes that enhance note taking experiences.
|
||||
sQdthOne is a Obsidian MD theme with light and dark modes that enhance note taking experiences.
|
||||
|
||||
This project is something I use on a daily basis and will be continuously updated as new obsidian features get added.
|
||||
|
||||
## Features
|
||||
- Special checklist icons support
|
||||
|
||||
## Plugin Support
|
||||
- compatible with:
|
||||
|
|
@ -15,10 +20,7 @@ Large thank you to the obsidian community for creating resources that inspired a
|
|||
- https://github.com/catppuccin/obsidian
|
||||
|
||||
## More
|
||||
Visit [my website](https://www.KeithLerner.net/) to learn more about me. *This does not work right now, please excuse the construction.*
|
||||
|
||||
## LTS
|
||||
This project is something I use on a daily basis and will be continuously updated as new obsidian features get added.
|
||||
Visit [KeithLerner.net](https://www.KeithLerner.net/) to learn more about me.
|
||||
|
||||
## Bugs and Suggestions
|
||||
Please report bugs or make suggestions [here on Github](https://github.com/KeithLerner/ObsidianMDsQdthOne/issues)
|
||||
BIN
TinyGif.gif
|
Before Width: | Height: | Size: 469 KiB After Width: | Height: | Size: 323 KiB |
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "sQdthOne",
|
||||
"version": "1.7.1",
|
||||
"version": "1.8.0",
|
||||
"minAppVersion": "1.4.0",
|
||||
"author": "Keith 'SquidImplant' Lerner",
|
||||
"author": "Keith 'Sqdth' Lerner",
|
||||
"authorUrl": "KeithLerner.net"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 54 KiB |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 60 KiB |
12
theme.css
|
|
@ -1853,26 +1853,30 @@ hr {
|
|||
}
|
||||
|
||||
/*--Links--*/
|
||||
a,
|
||||
a .footnote-link,
|
||||
.cm-s-obsidian .cm-formatting-link.cm-url,
|
||||
.cm-s-obsidian .cm-url,
|
||||
.cm-s-obsidian .cm-link,
|
||||
.cm-s-obsidian .cm-hmd-internal-link,
|
||||
.markdown-source-view.mod-cm6 .cm-link .cm-underline,
|
||||
.markdown-source-view.mod-cm6 .cm-url .cm-underline {
|
||||
color: var(--text-accent);
|
||||
color: hsl(var(--color-alternate));
|
||||
text-decoration-color: transparent;
|
||||
text-decoration-line: underline;
|
||||
text-decoration-style: solid;
|
||||
transition: var(--anim-duration-moderate);
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a .footnote-link:hover,
|
||||
.cm-s-obsidian .cm-formatting-link.cm-url:hover,
|
||||
.cm-s-obsidian .cm-url:hover,
|
||||
.cm-s-obsidian .cm-link:hover,
|
||||
.cm-s-obsidian .cm-hmd-internal-link:hover,
|
||||
.markdown-source-view.mod-cm6 .cm-link .cm-underline:hover,
|
||||
.markdown-source-view.mod-cm6 .cm-url .cm-underline:hover {
|
||||
color: var(--text-accent-hover);
|
||||
color: hsl(var(--color-hovered));
|
||||
text-decoration-color: inherit;
|
||||
}
|
||||
|
||||
|
|
@ -1881,7 +1885,7 @@ hr {
|
|||
.cm-s-obsidian .cm-formatting-link.cm-hmd-barelink,
|
||||
.cm-s-obsidian .cm-formatting-link.cm-formatting-link-start,
|
||||
.cm-s-obsidian .cm-formatting-link.cm-formatting-link-end {
|
||||
color: var(--interactive-accent);
|
||||
color: hsl(var(--interactive-accent));
|
||||
}
|
||||
|
||||
.cm-s-obsidian span.cm-formatting-link.cm-url,
|
||||
|
|
@ -1893,7 +1897,7 @@ hr {
|
|||
|
||||
.cm-s-obsidian .is-flashing .cm-url .cm-underline:hover,
|
||||
.cm-s-obsidian .is-flashing span.cm-url:hover {
|
||||
--link-external-color-hover: var(--interactive-accent-hover);
|
||||
--link-external-color-hover: hsl(var(--color-interactable));
|
||||
}
|
||||
|
||||
/*--Lists--*/
|
||||
|
|
|
|||