Changing the appearance of a Scrollbar in tkinter (using ttk styles)
I was wondering if you could help me with a style options issue in ttk. I've managed to change most of the basic ttk widgets to the style of my preference. I'm only stuck at changing the style of a scrollbar. I've searched for hours looking for an answer, unfortunately to no avail. Here's a sample code using the scrollbar style option: import tkinter as tk from tkinter import ttk class Gui: def __init__(self,mainframe): #set the style style = ttk.Style() style.configure('Horizontal.TScrollbar',background = "blue" ) #Create a mainframe self.mainframe = mainframe self.mainframe.title("example")