fix: minor correction for non-chroma pre/code blocks

Signed-off-by: jolheiser <john.olheiser@gmail.com>
ffdhall
jolheiser 2024-05-24 22:29:44 -05:00
parent f93238ae57
commit 9030c27f00
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
3 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,7 @@
package html package html
type BaseContext struct { type BaseContext struct {
Title string Title string
Description string Description string
} }
@ -23,4 +23,3 @@ templ base(bc BaseContext) {
</body> </body>
</html> </html>
} }

View File

@ -3,6 +3,11 @@
color: rgb(var(--ctp-text)); color: rgb(var(--ctp-text));
} }
.markdown code,
.markdown pre {
background-color: rgb(var(--ctp-base));
}
.markdown a { .markdown a {
color: rgb(var(--ctp-blue)); color: rgb(var(--ctp-blue));
text-decoration-line: underline; text-decoration-line: underline;

File diff suppressed because one or more lines are too long