Styling tkinter Scale class

51 Views Asked by At

Here is the scale I have:

    self.volume_slider = tk.Scale(
        self,
        from_=0,
        to=100,
        orient=tk.HORIZONTAL,
        background="#fdfdfe",
        highlightbackground="#fdfdfe",
        highlightcolor="#fdfdfe",
        troughcolor="#37b9fe",
        showvalue=False,
        resolution=1,
        bd=0,
        width=7)

Scale I have

But my desired scale is something like this:

Scale I want

[Edit] How can this be achieved?

0

There are 0 best solutions below