0

I am using Scene Builder to make a login screen. My PasswordField's background color is gray and I would like the stars that come up when you write something to be white. They are currently black even though I set the text and prompt color to white (Which worked on the normal TextField but not here).

Where do I set the right color?

fabian
  • 80,457
  • 12
  • 86
  • 114
Dominic
  • 322
  • 1
  • 8

2 Answers2

1

I used -fx-text-color instead of -fx-text-fill

Dave Jarvis
  • 30,436
  • 41
  • 178
  • 315
Dominic
  • 322
  • 1
  • 8
0

There are many 2 different colors for JFXPasswordField extends PasswordField and moreover (PasswordField extends TextField):

this.setUnFocusColor(Paint color)
this.setFocusColor(Paint color)

Perhaps can it help you

Gilles-Antoine Nys
  • 1,481
  • 16
  • 21