feat(mkdocs): hopefully make the mkdocs look a little better?

This commit is contained in:
perf3ct 2025-08-18 18:19:41 +00:00
parent 05727d9a9d
commit 219c9aa785
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232
3 changed files with 18 additions and 3 deletions

View File

@ -49,10 +49,10 @@ document.addEventListener('DOMContentLoaded', function() {
}); });
}); });
// Add external link indicators // Add external link indicators (without forcing new tab)
const externalLinks = document.querySelectorAll('a[href^="http"]:not([href*="readur.app"])'); const externalLinks = document.querySelectorAll('a[href^="http"]:not([href*="readur.app"])');
externalLinks.forEach(link => { externalLinks.forEach(link => {
link.setAttribute('target', '_blank'); // Only add rel attribute for security, don't force target="_blank"
link.setAttribute('rel', 'noopener noreferrer'); link.setAttribute('rel', 'noopener noreferrer');
link.classList.add('external-link'); link.classList.add('external-link');
}); });

View File

@ -288,6 +288,21 @@
border-bottom: 1px solid #323842; border-bottom: 1px solid #323842;
} }
/* Tone down the primary color in header for dark mode */
[data-md-color-scheme="slate"] .md-header {
--md-primary-fg-color: #4a8a9c; /* Muted cyan-gray */
--md-primary-bg-color: #1e2329;
}
/* Also adjust tabs if present */
[data-md-color-scheme="slate"] .md-tabs {
background-color: #252b33;
}
[data-md-color-scheme="slate"] .md-tabs__link--active {
color: #64b5f6;
}
/* Footer styling */ /* Footer styling */
[data-md-color-scheme="slate"] .md-footer { [data-md-color-scheme="slate"] .md-footer {
background-color: #1a1f25; background-color: #1a1f25;

View File

@ -30,7 +30,7 @@ theme:
# Dark mode - warmer, less depressing colors # Dark mode - warmer, less depressing colors
- media: "(prefers-color-scheme: dark)" - media: "(prefers-color-scheme: dark)"
scheme: slate scheme: slate
primary: cyan primary: blue-grey
accent: light-blue accent: light-blue
toggle: toggle:
icon: material/brightness-4 icon: material/brightness-4