@@ -14,6 +14,7 @@ class Key:
1414 focusing : str = "Focusing"
1515 hot : str = "Hot"
1616 separator : str = "Separator"
17+ tooltip : str = "Tooltip"
1718 effectType : str = "Effect Type"
1819 cornerType : str = "Corner Type"
1920 enableDropShadow : str = "Enable Drop Shadow"
@@ -27,6 +28,9 @@ class Key:
2728 enableImmersiveStyle : str = "Enable Immersive Style"
2829 enableCustomRendering : str = "Enable Custom Rendering"
2930 enableFluentAnimation : str = "Enable Fluent Animation"
31+ noModernAppBackgroundColor : str = "No Modern App Background Color"
32+ colorTreatAsTransparent : str = "Color Treat As Transparent"
33+ colorTreatAsTransparentThreshold : str = "Color Treat As Transparent Threshold"
3034 fadeOutTime : str = "Fade Out Time"
3135 popInTime : str = "Pop In Time"
3236 fadeInTime : str = "Fade In Time"
@@ -71,6 +75,9 @@ class Menu:
7175 enableImmersiveStyle : int = rawDefaults [Key .menu ][Key .enableImmersiveStyle ]
7276 enableCustomRendering : int = rawDefaults [Key .menu ][Key .enableCustomRendering ]
7377 enableFluentAnimation : int = rawDefaults [Key .menu ][Key .enableFluentAnimation ]
78+ noModernAppBackgroundColor : int = rawDefaults [Key .menu ][Key .noModernAppBackgroundColor ]
79+ colorTreatAsTransparent : str = rawDefaults [Key .menu ][Key .colorTreatAsTransparent ]
80+ colorTreatAsTransparentThreshold : int = rawDefaults [Key .menu ][Key .colorTreatAsTransparentThreshold ]
7481 effectType : int = rawDefaults [Key .menu ][Key .effectType ]
7582 cornerType : int = rawDefaults [Key .menu ][Key .cornerType ]
7683 enableDropShadow : int = rawDefaults [Key .menu ][Key .enableDropShadow ]
@@ -119,3 +126,15 @@ class Separator:
119126 lightModeColor : str = rawDefaults [Key .menu ][Key .separator ][Key .lightModeColor ]
120127 enableThemeColorization : int = rawDefaults [Key .menu ][Key .separator ][Key .enableThemeColorization ]
121128 disabled : int = rawDefaults [Key .menu ][Key .separator ][Key .disabled ]
129+
130+ class Tooltip :
131+ effectType : int = rawDefaults [Key .tooltip ][Key .effectType ]
132+ cornerType : int = rawDefaults [Key .tooltip ][Key .cornerType ]
133+ enableDropShadow : int = rawDefaults [Key .tooltip ][Key .enableDropShadow ]
134+ noBorderColor : int = rawDefaults [Key .tooltip ][Key .noBorderColor ]
135+ enableThemeColorization : int = rawDefaults [Key .tooltip ][Key .enableThemeColorization ]
136+ darkModeBorderColor : str = rawDefaults [Key .tooltip ][Key .darkModeBorderColor ]
137+ lightModeBorderColor : str = rawDefaults [Key .tooltip ][Key .lightModeBorderColor ]
138+ darkModeGradientColor : str = rawDefaults [Key .tooltip ][Key .darkModeGradientColor ]
139+ lightModeGradientColor : str = rawDefaults [Key .tooltip ][Key .lightModeGradientColor ]
140+ disabled : int = rawDefaults [Key .tooltip ][Key .disabled ]
0 commit comments