Skip to content

Commit f74aa1c

Browse files
committed
Change payment color in cview
1 parent dabb54f commit f74aa1c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/seedu/address/ui/ClientInfoPage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,9 +281,9 @@ public void updateItem(PaymentStatus item, boolean isEmpty) {
281281
if (!isEmpty()) {
282282
text = new Text(item.toString());
283283
if (item.isPaid()) {
284-
text.setStyle("-fx-stroke: green; -fx-stroke-width: 0.5; -fx-padding: 10px;");
284+
text.setStyle("-fx-stroke: #00FF00; -fx-stroke-width: 0.5; -fx-padding: 10px;");
285285
} else {
286-
text.setStyle("-fx-stroke: red; -fx-stroke-width: 0.5; -fx-padding: 10px;");
286+
text.setStyle("-fx-stroke: #FF0000; -fx-stroke-width: 0.5; -fx-padding: 10px;");
287287
}
288288
text.setFont(Font.font("Segoe UI Light"));
289289

0 commit comments

Comments
 (0)