mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
theme chnages
This commit is contained in:
parent
596b017992
commit
1424eeac6c
@ -130,7 +130,7 @@
|
||||
"DropdownMenu": {
|
||||
"fg_color": ["gray90", "gray20"],
|
||||
"hover_color": ["gray75", "gray28"],
|
||||
"text_color": ["#DCE4EE", "#DCE4EE"]
|
||||
"text_color": ["gray10", "gray90"]
|
||||
},
|
||||
"CTkFont": {
|
||||
"macOS": {
|
||||
|
@ -130,7 +130,7 @@
|
||||
"DropdownMenu": {
|
||||
"fg_color": ["gray90", "gray20"],
|
||||
"hover_color": ["gray75", "gray28"],
|
||||
"text_color": ["#DCE4EE", "#DCE4EE"]
|
||||
"text_color": ["gray10", "gray90"]
|
||||
},
|
||||
"CTkFont": {
|
||||
"macOS": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
from tkinter.font import Font
|
||||
import copy
|
||||
from typing import List, Callable, Tuple, Optional
|
||||
from typing import List, Callable, Tuple, Optional, Literal
|
||||
|
||||
from ..theme.theme_manager import ThemeManager
|
||||
|
||||
@ -23,8 +23,8 @@ class CTkFont(Font):
|
||||
def __init__(self,
|
||||
family: Optional[str] = None,
|
||||
size: Optional[int] = None,
|
||||
weight: str = None,
|
||||
slant: str = "roman",
|
||||
weight: Literal["normal", "bold"] = None,
|
||||
slant: Literal["italic", "roman"] = "roman",
|
||||
underline: bool = False,
|
||||
overstrike: bool = False):
|
||||
|
||||
@ -51,8 +51,9 @@ class CTkFont(Font):
|
||||
self._size_configure_callback_list.remove(callback)
|
||||
|
||||
def create_scaled_tuple(self, font_scaling: float) -> Tuple[str, int, str]:
|
||||
|
||||
""" return scaled tuple representation of font in the form (family: str, size: int, style: str)"""
|
||||
return self._family, round(self._size * font_scaling), self._tuple_style_string
|
||||
return self._family, round(-abs(self._size) * font_scaling), self._tuple_style_string
|
||||
|
||||
def config(self, *args, **kwargs):
|
||||
raise AttributeError("'config' is not implemented for CTk widgets. For consistency, always use 'configure' instead.")
|
||||
|
@ -2,7 +2,7 @@ import tkinter
|
||||
import customtkinter
|
||||
|
||||
customtkinter.set_appearance_mode("dark") # Modes: "System" (standard), "Dark", "Light"
|
||||
customtkinter.set_default_color_theme("dark-blue") # Themes: "blue" (standard), "green", "dark-blue"
|
||||
customtkinter.set_default_color_theme("blue") # Themes: "blue" (standard), "green", "dark-blue"
|
||||
|
||||
app = customtkinter.CTk()
|
||||
app.geometry("1100x900")
|
||||
|
Loading…
Reference in New Issue
Block a user