Advertisement
Guts70

Untitled

Mar 11th, 2024
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.03 KB | None | 0 0
  1. import tkinter
  2. import customtkinter
  3. from PIL import ImageTk,Image
  4.  
  5. customtkinter.set_appearance_mode("dark")  # Modes: system (default), light, dark
  6. customtkinter.set_default_color_theme("green")  # Themes: blue (default), dark-blue, green
  7.  
  8.  
  9. app = customtkinter.CTk()  #creating cutstom tkinter window
  10. app.geometry("1366x768")
  11. app.title('Login')
  12.  
  13. img1=ImageTk.PhotoImage(Image.open("picture.png"))
  14. l1=customtkinter.CTkLabel(master=app, image=img1)
  15. l1.pack()
  16.  
  17. #creating custom frame
  18. frame=customtkinter.CTkFrame(master=l1, width=320, height=360, corner_radius=90)
  19. #frame.place(relx=0.5, rely=0.5, anchor=tkinter.CENTER)
  20.  
  21. l2=customtkinter.CTkLabel(master=frame, text="Log into your Account",font=('Century Gothic', 20))
  22. l2.place(x=50, y=45)
  23.  
  24. root.attributes("-transparentcolor", '#000001')
  25. root.config(bg="#000001")
  26. root.wm_attributes('-alpha',0.90)
  27.  
  28. l3 = customtkinter.CTkLabel(app, text="I want a text without a frame, and the frame reflects the wallpaper", font=('Century Gothic', 20))
  29. l3.place(x=50, y=50)
  30.  
  31.  
  32. app.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement