Here you can find the source of getMediumDarkColor()
public static Color getMediumDarkColor()
//package com.java2s; //License from project: Open Source License import java.awt.Color; import javax.swing.UIManager; public class Main { private static final String TABLE_GRID_COLOR_KEY = "Table.gridColor"; public static Color getMediumDarkColor() { return UIManager.getColor(TABLE_GRID_COLOR_KEY); }//from www . ja v a2s . com }