I have been doing some GUIs in Java. I know in other languages (like Python) you can create a CSS style sheet and load it into the program(pretty simple). But with Swing I have had to manually code the style for each individual component, which is tedious and hard to manage.
Is there a way, in Swing, that I can load an external style sheet, and use those styles for my components across my whole program?
I have already looked into "Look and Feel" as an option, but decided to go with CSS.