Skip to content

Commit

Permalink
[NUI] Change the default color of the border.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoogabYun authored and dongsug-song committed Nov 20, 2023
1 parent a0a293b commit 1388a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tizen.NUI/src/public/Window/DefaultBorder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public class DefaultBorder : BindableObject, IDisposable, IBorderInterface
private const float DefaultHeight = 50;
private const uint DefaultLineThickness = 5;
private const uint DefaultTouchThickness = 0;
private static readonly Color DefaultBackgroundColor = new Color(1, 1, 1, 0.3f);
private static readonly Color DefaultClickedBackgroundColor = new Color(1, 1, 1, 0.4f);
private static readonly Color DefaultBackgroundColor = new Color(0.7f, 0.7f, 0.7f, 0.6f);
private static readonly Color DefaultClickedBackgroundColor = new Color(0.7f, 0.7f, 0.7f, 0.7f);
private static readonly Size2D DefaultMinSize = new Size2D(100, 0);
#endregion //Constant Fields

Expand Down

0 comments on commit 1388a96

Please sign in to comment.