- 🤖 Tutorial for how to make your Custom Themes.
- Let's First Start with Utilities.
- A Local Editor or Use github.dev
- Sample File : Check wzml_minimal.py
You can give the custom
as your choice, like wzml_futuristic.py
, etc
- Things to Remember while Editing :
- Don't Change the Name Inside
{
}
(2nd Brackets) - Don't Change the Variable Name like
ST_BN1_NAME
, etc - Don't Change the Class name WZMLStyle
- Don't Use f-string like
f"{var}"
Sample Editing :
- Don't Change the Name Inside
class WZMLStyle: # Don't Change This
ST_BN1_NAME = '{sb1n}'
# You can Change as Below !! -->
ST_BN1_NAME = "It's {sb1n} ❤️" # Use Double Quotes, when using Single Quotes Inside
Step 3: Now, Open init.py and Edit as shown below and Save it
AVL_THEMES = {"minimal": wzml_minimal, "emoji": wzml_emoji, "futuristic": wzml_futuristic} # You can add More ...
# Add Last Dict Value, as shown, name: filename (same as given in Step 1)
# Name can be of any Choice to Call the Theme Name
Done, Now you have Successfully Built your Own Theme !