[NUI] Update Font size scale again based on the updated guide
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Thu, 13 Jul 2023 12:56:34 +0000 (21:56 +0900)
committerEunki Hong <h.pichulia@gmail.com>
Thu, 13 Jul 2023 23:39:51 +0000 (08:39 +0900)
- The font size scales are changed according to the latest GUI guide.
- Five stages of Font size scale
 : 87% -> 100% -> 113% -> 126% -> 140 %

Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
src/Tizen.NUI/src/public/BaseComponents/TextUtils.cs

index c08edfd..11c66ee 100755 (executable)
@@ -1140,8 +1140,8 @@ namespace Tizen.NUI.BaseComponents
         // The following values from 'system-settings/libutil/sstu.c'
         private const float FontSizeScaleSmall = 0.87f;
         private const float FontSizeScaleNormal = 1.0f;
-        private const float FontSizeScaleLarge = 1.1f;
-        private const float FontSizeScaleHuge = 1.2f;
+        private const float FontSizeScaleLarge = 1.13f;
+        private const float FontSizeScaleHuge = 1.26f;
         private const float FontSizeScaleGiant = 1.4f;
 #endif