JEditorPane display;
//...
display = new JEditorPane();
display.setContentType( "text/html" );
display.setEditable( false );
display.setBackground( lemonChiffon );
display.setFont(new Font( "Serif", Font.PLAIN, 12 ));
display.setForeground( black );
gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 4;
// ...
JScrollPane displayScroller = new JScrollPane( display );
gridBagLayout.setConstraints( displayScroller, gbc );
pane.add( displayScroller );
// ...
display.setText( "<html><body><font color=\"red\">hello</font></body></html>" );