##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 13\13.1586 - No Title.py
# Description: No Title
##############################################################################
self.lforeground = ttk.Label(self.toolbar, text="Foreground Color")
self.lforeground.pack()
self.bforeground = tk.Button(self.toolbar, text="Color", command=self.set_foreground_color, bg=self.foreground_color)
self.bforeground.pack(fill="x")
self.lbackground = ttk.Label(self.toolbar, text="Background color")
self.lbackground.pack()
self.bbackground = tk.Button(self.toolbar, text="Transparent", command=self.set_background_color, bg=None)
self.bbackground.pack(fill="x")