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.

View | Details | Raw Unified | Return to bug 232651
Collapse All | Expand All

(-)a/o.n.swing.plaf/src/org/netbeans/swing/plaf/metal/DarkMetalTheme.java (+6 lines)
Lines 47-52 Link Here
47
import javax.swing.plaf.ColorUIResource;
47
import javax.swing.plaf.ColorUIResource;
48
import javax.swing.plaf.metal.DefaultMetalTheme;
48
import javax.swing.plaf.metal.DefaultMetalTheme;
49
import org.netbeans.swing.plaf.util.DarkIconFilter;
49
import org.netbeans.swing.plaf.util.DarkIconFilter;
50
import org.netbeans.swing.plaf.util.RelativeColor;
50
51
51
/**
52
/**
52
 *
53
 *
Lines 164-169 Link Here
164
        UIManager.put( "nb.versioning.conflicted.color", new Color(255, 51, 51)); //NOI18N
165
        UIManager.put( "nb.versioning.conflicted.color", new Color(255, 51, 51)); //NOI18N
165
        UIManager.put( "nb.versioning.ignored.color", new Color(255, 255, 255)); //NOI18N
166
        UIManager.put( "nb.versioning.ignored.color", new Color(255, 255, 255)); //NOI18N
166
        UIManager.put( "nb.versioning.remotemodification.color", black); //NOI18N
167
        UIManager.put( "nb.versioning.remotemodification.color", black); //NOI18N
168
169
        // db.dataview
170
        UIManager.put("nb.dataview.table.background", new RelativeColor(new Color(0,0,0), new Color(0,0,0), "Table.background")); //NOI18N
171
        UIManager.put("nb.dataview.table.altbackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table.background")); //NOI18N
172
        UIManager.put("nb.dataview.table.rollOverRowBackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table.selectionBackground")); //NOI18N
167
    }
173
    }
168
174
169
    @Override
175
    @Override
(-)a/o.n.swing.plaf/src/org/netbeans/swing/plaf/nimbus/DarkNimbusTheme.java (+7 lines)
Lines 45-50 Link Here
45
import javax.swing.LookAndFeel;
45
import javax.swing.LookAndFeel;
46
import javax.swing.UIManager;
46
import javax.swing.UIManager;
47
import org.netbeans.swing.plaf.util.DarkIconFilter;
47
import org.netbeans.swing.plaf.util.DarkIconFilter;
48
import org.netbeans.swing.plaf.util.RelativeColor;
48
49
49
/**
50
/**
50
 *
51
 *
Lines 160-164 Link Here
160
        UIManager.put( "nb.versioning.conflicted.color", new Color(255, 51, 51)); //NOI18N
161
        UIManager.put( "nb.versioning.conflicted.color", new Color(255, 51, 51)); //NOI18N
161
        UIManager.put( "nb.versioning.ignored.color", new Color(153, 153, 153)); //NOI18N
162
        UIManager.put( "nb.versioning.ignored.color", new Color(153, 153, 153)); //NOI18N
162
        UIManager.put( "nb.versioning.remotemodification.color", new Color( 230, 230, 230)); //NOI18N
163
        UIManager.put( "nb.versioning.remotemodification.color", new Color( 230, 230, 230)); //NOI18N
164
165
        // db.dataview
166
        UIManager.put("nb.dataview.table.background", new RelativeColor(new Color(0,0,0), new Color(0,0,0), "Table.background")); //NOI18N
167
        UIManager.put("nb.dataview.table.altbackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table.background")); //NOI18N
168
        UIManager.put("Table.selectionBackground", new RelativeColor(new Color(0,0,0), new Color(0,0,0), "Table[Enabled+Selected].textBackground")); //NOI18N
169
        UIManager.put("nb.dataview.table.rollOverRowBackground", new RelativeColor(new Color(0,0,0), new Color(30,30,30), "Table[Enabled+Selected].textBackground")); //NOI18N
163
   }
170
   }
164
}
171
}

Return to bug 232651