Skip to content

Commit c01bce1

Browse files
committed
fix colour names
1 parent 0cd29fc commit c01bce1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

javafx/src/main/java/com/baeldung/view/SearchController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ private void initialize() {
4444
// search panel
4545
searchButton.setText("Search");
4646
searchButton.setOnAction(event -> loadData());
47-
searchButton.setStyle("-fx-background-color: #457ecd; -fx-text-fill: #ffffff;");
47+
searchButton.setStyle("-fx-background-color: slateblue; -fx-text-fill: white;");
4848

4949
searchField.setOnKeyPressed(event -> {
5050
if (event.getCode().equals(KeyCode.ENTER)) {

0 commit comments

Comments
 (0)