From: Bowon Ryu Date: Thu, 15 Apr 2021 02:50:23 +0000 (+0900) Subject: [NUI] Add dark theme for Text components (#2908) X-Git-Tag: citest_t1~95 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=b4bed665fe85f1544a4f9c3666b52d2364f7b35c;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Add dark theme for Text components (#2908) Signed-off-by: Bowon Ryu --- 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")),