I noticed the taskbar transparency was updated in darkTheme.js
. How can I modify it to make it completely opaque, and will this affect other components?
#41
-
I noticed the taskbar transparency was updated in |
Beta Was this translation helpful? Give feedback.
Answered by
Ziqian-Huang0607
Oct 2, 2025
Replies: 1 comment
-
To make the taskbar opaque: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
dailker
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To make the taskbar opaque:
1. Open
src/themes/darkTheme.js
:javascript<br>taskbar: 'bg-black/30 backdrop-blur-lg border-t border-white/20',<br>
2. Change to
bg-black
.3. Test with
npm run dev
.4. Only affects taskbar; other components use separate properties. Submit a pull request.