Skip to content

Latest commit

 

History

History
 
 

themes

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Custom Themes 🛠

  • 🤖 Tutorial for how to make your Custom Themes.
  • Let's First Start with Utilities.

Requirements :

  1. A Local Editor or Use github.dev
  2. Sample File : Check wzml_minimal.py

Step 1: Open the Blank Editor and Paste the Codes of wzml_minimal.py and name it wzml_custom.py

You can give the custom as your choice, like wzml_futuristic.py, etc

Step 2: Start by Editing and Making your Ultimate Design ✨️ and Save in this Folder

  • 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 :
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 !