Customized Message Box - Vision

Yes. You can make a custom JOptionPane
Example:

from javax.swing import JOptionPane
JOptionPane.showOptionDialog(None, "What Choices do we have?", "Not Okay!", JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE, None, ["Not Okay!", "Really Not Okay!"], "Confirm")

image

Edit:
Additional information Here: