Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 26fb53f

Browse files
committed
Color adjustments
1 parent cccd022 commit 26fb53f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/UI/Widgets/AutoComplete/AutoCompleteModal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public override void Update()
170170

171171
// Setting autocomplete cell buttons
172172

173-
private readonly Color selectedSuggestionColor = new Color(46/255f, 54/255f, 53/255f);
173+
private readonly Color selectedSuggestionColor = new Color(45/255f, 75/255f, 80/255f);
174174
private readonly Color inactiveSuggestionColor = new Color(0.11f, 0.11f, 0.11f);
175175

176176
private List<Suggestion> GetEntries() => Suggestions;

src/UI/Widgets/ButtonList/ButtonCell.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public GameObject CreateContent(GameObject parent)
5959
buttonText.alignment = TextAnchor.MiddleLeft;
6060

6161
Color normal = new Color(0.11f, 0.11f, 0.11f);
62-
Color highlight = new Color(0.25f, 0.25f, 0.25f);
62+
Color highlight = new Color(0.16f, 0.16f, 0.16f);
6363
Color pressed = new Color(0.05f, 0.05f, 0.05f);
6464
Color disabled = new Color(1, 1, 1, 0);
6565
RuntimeProvider.Instance.SetColorBlock(Button.Component, normal, highlight, pressed, disabled);

0 commit comments

Comments
 (0)