diff -r f27dccfd15dd notifications/src/org/netbeans/modules/notifications/NotificationImpl.java --- a/notifications/src/org/netbeans/modules/notifications/NotificationImpl.java Thu Jul 31 18:01:41 2014 +0000 +++ b/notifications/src/org/netbeans/modules/notifications/NotificationImpl.java Sat Aug 02 01:50:01 2014 -0500 @@ -60,6 +60,7 @@ import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JPanel; +import javax.swing.UIManager; import org.netbeans.modules.notifications.center.NotificationCenterManager; import org.openide.awt.Notification; import org.openide.awt.NotificationDisplayer.Category; @@ -255,7 +256,9 @@ btn.setContentAreaFilled(false); btn.addActionListener(action); btn.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR)); -// btn.setForeground(Color.blue); + + Color c = UIManager.getColor("nb.html.link.foreground") == null ? Color.BLUE : UIManager.getColor("nb.html.link.foreground"); + btn.setForeground(c); return btn; }