Fix Color Constant Value error 21/257521/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Tue, 27 Apr 2021 06:13:13 +0000 (15:13 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Tue, 27 Apr 2021 06:28:14 +0000 (15:28 +0900)
commit3fd975f68d4eb7bc905c2b76ed9508ec0e112ad1
tree267238364c4c76e38fd8f41e77b2fb188bde1812
parent6d76b1774830e75aa00da90d65bffa78f94969df
Fix Color Constant Value error

Fix incorrected constant value of colors.

Ex)
static constexpr Vector4 YELLOW_GREEN(154.0f / 255.0f, 205.0f / 255.0f, 50.0f, 1.0f);                //#9ACD32
-->
static constexpr Vector4 YELLOW_GREEN(154.0f / 255.0f, 205.0f / 255.0f, 50.0f / 255.0f, 1.0f);             //#9ACD32
(past version, blue arguments was not fitting on [0.0f ~ 1.0f])

All values will be in [0.0f ~ 1.0f] now

Change-Id: Icc9dae617929620d3c5624a0214bc93168dda9c9
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali/public-api/common/constants.h