@@ -11,12 +11,20 @@ namespace TranslucentFlyouts::Framework
11
11
bool disabled{ false };
12
12
winrt::Windows::UI::Color darkMode_TintColor{ 255 , 32 , 32 , 32 };
13
13
winrt::Windows::UI::Color lightMode_TintColor{ 255 , 243 , 243 , 243 };
14
+ float darkMode_TintOpacity{ 0 .1f };
15
+ float lightMode_TintOpacity{ 0 .1f };
16
+ float darkMode_LuminosityOpacity{ 0 .0f };
17
+ float lightMode_LuminosityOpacity{ 0 .0f };
18
+ float darkMode_Opacity{ 1 .0f };
19
+ float lightMode_Opacity{ 1 .0f };
20
+ /* winrt::Windows::UI::Color darkMode_TintColor{ 255, 32, 32, 32 };
21
+ winrt::Windows::UI::Color lightMode_TintColor{ 255, 243, 243, 243 };
14
22
float darkMode_TintOpacity{ 0.3f };
15
23
float lightMode_TintOpacity{ 0.15f };
16
24
float darkMode_LuminosityOpacity{ 0.8f };
17
25
float lightMode_LuminosityOpacity{ 0.8f };
18
26
float darkMode_Opacity{ 1.0f };
19
- float lightMode_Opacity{ 1 .0f };
27
+ float lightMode_Opacity{ 1.0f };*/
20
28
} g_immersiveContext{};
21
29
#pragma data_seg()
22
30
#pragma comment(linker,"/SECTION:.shared,RWS")
@@ -30,9 +38,6 @@ namespace TranslucentFlyouts::Framework
30
38
{
31
39
static_cast <DWORD>(element.ActualTheme ()) == 1
32
40
};
33
- OutputDebugStringW (
34
- std::format (L" isLight: {}, theme: {}\n " , isLight, static_cast <DWORD>(element.ActualTheme ())).c_str ()
35
- );
36
41
37
42
if constexpr (is_wux_object_v<ElementType>)
38
43
{
0 commit comments