Replies: 2 comments
-
link icons are still white |
Beta Was this translation helpful? Give feedback.
0 replies
-
dark mode is not properly functional because color schemes are still are in development so we haven't done that. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you dont want light theme and the toggle bar and all pages as dark theme follow these steps
.html
pages add this line as the second line<html lang="en", light-mode="dark">
Now all your pages will be dark theme only by default.
Toggle bar removing -
Open
assets/js/app.js
Completely comment out or remove the
function toggle_light_mode()
Then search for this line in app.js
<input type="checkbox" id="dark_toggler" class="dark_toggler" aria-label="Toggle Light Mode" onclick="toggle_light_mode()">
Comment it or remove it.
At this stage your website will look like this
Now go line 4 in app.js (the
let header =$
) part and then add thedark-theme
in it.So it should look like -
<nav class="navbar navbar-expand-lg navbar-light fixed-top dark-theme" id="navbar">
Now your website should look like this
Beta Was this translation helpful? Give feedback.
All reactions