This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 249920

Summary: [dark][nimbus] Table Cell Renderer uses a dark foreground color
Product: platform Reporter: lkishalmi <lkishalmi>
Component: Window SystemAssignee: Stanislav Aubrecht <saubrecht>
Status: NEW ---    
Severity: normal Keywords: L&F, SIMPLEFIX
Priority: P4    
Version: 8.0   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description lkishalmi 2015-01-21 08:35:09 UTC
It seems that table foreground color is set exactly to something dark in original Nimbus, it causes that normal tables with no color annotated html rendered elements are displayed dark on a dark background. (Like Subversion Update Table, see: issue #249912)

Adding the following code to the DarkNimbusTheme.java solves these problems.

UIManager.put( "Table.textForeground", caretForeground); //NOI18N
Comment 1 lkishalmi 2015-01-21 08:36:21 UTC
Shall I create a patch file for such a simple fix?