theme icons change

This commit is contained in:
Corban-Lee Jones 2024-11-06 23:14:31 +00:00
parent 85f5b5b1b4
commit 385198fcb2

View File

@ -35,8 +35,8 @@ $(document).ready(function() {
const getThemeIcon = theme => { const getThemeIcon = theme => {
return { return {
"auto": "diamond-half", "auto": "diamond-half",
"light": "sun", "light": "sun-fill",
"dark": "moon-stars", "dark": "moon-stars-fill",
}[theme]; }[theme];
}; };