So I'm using the customtkinter to create an interface. I have an entry and I want it to have a background, but I cant't do it. In the documentation, there isn't an argument for the border. Specifically, I want to change the width and the color. Does anyone know how I can do it?
from tkinter import mainloop
import customtkinter as ctk
root = ctk.CTk()
root.geometry("200x200")
e = ctk.CTkEntry(master=root,
text_color="green",
font=("tahoma", 20),
# borderwidth=5,
# bd=5,
)
e.insert(0, "text goes here...")
e.pack()
mainloop()
Here bd
throws an error. borderwidth
works but not as expected. Maybe you can't just edit the border in the CTkEntry widget. But I don't know.