From 385198fcb2c6b5ed596453b62290cd5270654057 Mon Sep 17 00:00:00 2001 From: Corban-Lee Jones Date: Wed, 6 Nov 2024 23:14:31 +0000 Subject: [PATCH] theme icons change --- static/js/base.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/base.js b/static/js/base.js index c8d41f4..27de59b 100644 --- a/static/js/base.js +++ b/static/js/base.js @@ -35,8 +35,8 @@ $(document).ready(function() { const getThemeIcon = theme => { return { "auto": "diamond-half", - "light": "sun", - "dark": "moon-stars", + "light": "sun-fill", + "dark": "moon-stars-fill", }[theme]; };