3D spaceshooter with online scoreboard, online demos, ship building. Now entirely defunct, but might be resurrected
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
sector/src/net/sector/gui/panels/HsColors.java

23 lines
602 B

package net.sector.gui.panels;
import com.porcupine.color.RGB;
/**
* Colors used in all highscore tables
*
* @author Ondřej Hruška (MightyPork)
*/
public class HsColors {
/** Score number */
public static final RGB SCORE = RGB.GREEN;
/** Guest name */
public static final RGB GUEST = RGB.WHITE;
/** User name (not active) */
public static final RGB USER = new RGB(0x2EA8FF);
/** Active guest (just submitted) */
public static final RGB GUEST_ACTIVE = new RGB(0xFFE100);
/** Active user (Just submitted, or in an overview table) */
public static final RGB USER_ACTIVE = RGB.CYAN;
}