From b4bed665fe85f1544a4f9c3666b52d2364f7b35c Mon Sep 17 00:00:00 2001 From: Bowon Ryu Date: Thu, 15 Apr 2021 11:50:23 +0900 Subject: [PATCH] [NUI] Add dark theme for Text components (#2908) Signed-off-by: Bowon Ryu --- src/Tizen.NUI/src/public/Theme/ThemeDark.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Tizen.NUI/src/public/Theme/ThemeDark.cs b/src/Tizen.NUI/src/public/Theme/ThemeDark.cs index dea3af4..e4d457c 100644 --- a/src/Tizen.NUI/src/public/Theme/ThemeDark.cs +++ b/src/Tizen.NUI/src/public/Theme/ThemeDark.cs @@ -37,7 +37,7 @@ namespace Tizen.NUI { FontFamily = "BreezeSans", PixelSize = 32, - TextColor = new Color(0.00f, 0.05f, 0.17f, 1), + TextColor = new Color(1.00f, 1.00f, 1.00f, 1), FontStyle = new PropertyMap().Add("weight", new PropertyValue("light")), }); @@ -46,12 +46,12 @@ namespace Tizen.NUI { FontFamily = "BreezeSans", PixelSize = 32, - TextColor = new Color(0.00f, 0.05f, 0.17f, 1), + TextColor = new Color(1.00f, 1.00f, 1.00f, 1), FontStyle = new PropertyMap().Add("weight", new PropertyValue("regular")), PrimaryCursorColor = new Vector4(0.08f, 0.45f, 0.90f, 1), SecondaryCursorColor = new Vector4(0.08f, 0.45f, 0.90f, 1), CursorWidth = 3, - SelectionHighlightColor = new Vector4(0.17f, 0.37f, 0.72f, 0.20f), + SelectionHighlightColor = new Vector4(1.00f, 1.00f, 1.00f, 0.20f), GrabHandleColor = new Color(0.08f, 0.45f, 0.90f, 1), GrabHandleImage = FrameworkInformation.ResourcePath + "IoT_handler_center_downW.png", SelectionHandleImageLeft = new PropertyMap().Add("filename", new PropertyValue(FrameworkInformation.ResourcePath + "IoT_handler_downleftW.png")), @@ -63,12 +63,12 @@ namespace Tizen.NUI { FontFamily = "BreezeSans", PixelSize = 32, - TextColor = new Color(0.00f, 0.05f, 0.17f, 1), + TextColor = new Color(1.00f, 1.00f, 1.00f, 1), FontStyle = new PropertyMap().Add("weight", new PropertyValue("regular")), PrimaryCursorColor = new Vector4(0.08f, 0.45f, 0.90f, 1), SecondaryCursorColor = new Vector4(0.08f, 0.45f, 0.90f, 1), CursorWidth = 3, - SelectionHighlightColor = new Vector4(0.17f, 0.37f, 0.72f, 0.20f), + SelectionHighlightColor = new Vector4(1.00f, 1.00f, 1.00f, 0.20f), GrabHandleColor = new Color(0.08f, 0.45f, 0.90f, 1), GrabHandleImage = FrameworkInformation.ResourcePath + "IoT_handler_center_downW.png", SelectionHandleImageLeft = new PropertyMap().Add("filename", new PropertyValue(FrameworkInformation.ResourcePath + "IoT_handler_downleftW.png")), -- 2.7.4