Translucent Window #143
-
Hello! Thanks for making such a great theme snippet for us! There is one feature that I miss about the default system theme though: What code edit can be done to preserve "Translucent Window" appearance setting functionality, and what values can be changed to increase and decrease translucency? I'd like to be able to see a bit of my desktop wallpaper as the background. I am using Dark Mode for ITS Alternate Theme (TTRPG: WOTC/Beyond) Thanks again! :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Solved it myself after more researching! :) 1.) Open your ITS Alternate Theme.css snippet file. (Save a backup copy just to be safe) 2.) Use FIND function (ctrl-f of cmd-f) in whichever text editor you use to find this line of code: 3.) For my need, scroll down about 27 lines below and FIND the "--note" line: 4.) For 50% opacity, CHANGE the color value of the
4a.) Alternatively, if hex code alpha values confuse you, use rbga values instead. Change line like this:
DONE! :) Explanation:
Just had to find the corresponding Add these values to the end of the Hope this helps anyone with my same question in the future. :) |
Beta Was this translation helpful? Give feedback.
Solved it myself after more researching! :)
1.) Open your ITS Alternate Theme.css snippet file. (Save a backup copy just to be safe)
2.) Use FIND function (ctrl-f of cmd-f) in whichever text editor you use to find this line of code:
.theme-dark .wotc-beyond {
(Or whichever .theme you wish to change)
3.) For my need, scroll down about 27 lines below and FIND the "--note" line:
--note: #1a1e24;
4.) For 50% opacity, CHANGE the color value of the
#hex
code to include 2 extra digits for the alpha channel:--note: #1a1e2480;
--note: #1a1e2400;
and 100% opacity =--note: #1a1e24FF;
(For a list of alpha channel hex values see bottom of answer.)4a.) Alternatively, if hex code alpha…