mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
remove tabview colors in themes
This commit is contained in:
parent
b62543f332
commit
fcfda7ed24
@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
ToDo:
|
||||
- complete other theme files
|
||||
- create grayscale theme file
|
||||
- change font attribute in wiki
|
||||
- add new button attributes to wiki
|
||||
|
||||
- create grayscale theme file
|
||||
- cursor configuring
|
||||
- overwrite winfo methods
|
||||
|
||||
## Unreleased - 2022-10-2
|
||||
## [5.0.0] - 2022-11-13
|
||||
### Added
|
||||
- Added CTkTextbox with automatic x and y scrollbars, corner_radius, border_width, border_spacing
|
||||
- Added CTkSegmentedButton
|
||||
@ -42,9 +42,6 @@ ToDo:
|
||||
- Removed Settings class and moved settings to widget and window classes
|
||||
- removed customtkinter.set_spacing_scaling(), now set_widget_scaling() is used for spacing too
|
||||
|
||||
### Fixed
|
||||
|
||||
|
||||
## [4.6.0] - 2022-09-17
|
||||
### Added
|
||||
- CTkProgressBar indeterminate mode, automatic progress loop with .start() and .stop()
|
||||
|
@ -39,10 +39,7 @@
|
||||
"scrollbar_button_hover": ["gray40", "gray53"],
|
||||
"segmented_button": ["#979DA2", "#4A4D50"],
|
||||
"segmented_button_unselected": ["#979DA2", "#4A4D50"],
|
||||
"segmented_button_unselected_hover": ["gray70", "gray41"],
|
||||
"tabview_button_frame": ["gray70", "gray35"],
|
||||
"tabview_button": ["gray60", "gray45"],
|
||||
"tabview_button_hover": ["gray50", "gray55"]
|
||||
"segmented_button_unselected_hover": ["gray70", "gray41"]
|
||||
},
|
||||
"text": {
|
||||
"macOS": {
|
||||
|
@ -1,7 +1,7 @@
|
||||
import sys
|
||||
import tkinter
|
||||
import tkinter.ttk as ttk
|
||||
from typing import Union, Callable, Tuple, Optional
|
||||
from typing import Union, Callable, Tuple
|
||||
|
||||
try:
|
||||
from typing import TypedDict
|
||||
|
Loading…
Reference in New Issue
Block a user