better markdown

This commit is contained in:
2025-07-11 12:09:09 +01:00
parent 78b836bef5
commit b538d495db
3 changed files with 21 additions and 32 deletions

View File

@@ -1,6 +1,7 @@
export const seperator = "<hr/>"
export const site_name = "Deadvey's Blog"
export const site_url = "https://deadvey.com"
export const port = 8080
export const site_description = "Films, tech, random shit"
export const timeline_length = 20
export const enable_hitcount = true // Can slow down page loading a bit
@@ -103,6 +104,9 @@ export const css = `
color: #282828;
border: 1px solid #282828;
}
table {
border: solid 1px #282828;
}
}
@media (prefers-color-scheme: dark) {
body {
@@ -129,6 +133,9 @@ export const css = `
color: #ebdbb2;
border: 1px solid #ebdbb2;
}
table, td, th {
border: solid 1px #ebdbb2;
}
}
`