Modernize Doxygen HTML

using https://github.com/jothepro/doxygen-awesome-css.git
This commit is contained in:
Robin Gareus 2024-05-26 02:53:27 +02:00
parent 5b746b186a
commit c2e048547a
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
13 changed files with 3519 additions and 14 deletions

View file

@ -0,0 +1,12 @@
let original_theme_active = true;
function toggle_alternative_theme() {
if(original_theme_active) {
document.documentElement.classList.add("alternative")
original_theme_active = false;
} else {
document.documentElement.classList.remove("alternative")
original_theme_active = true;
}
}