Is it possible to style a java application made in Swing using css or javascript?
Is it possible to style a java application made in Swing using css or javascript?
Some things can be done in the component. Here is an example of using CSS and HTML for a JButton:
jbBotao = new javax.swing.JButton();
jbBotao.setText("<html>\n<style>\ndiv {\ncolor: white;\nfont-family:arial;\nbackground-color: black\n}\n</style>\n<div>Teste</div>\n</html>");