19 lines
769 B
Java
19 lines
769 B
Java
package project.Sprites;
|
|
|
|
import java.awt.*;
|
|
|
|
public class colorsTemp {
|
|
static final Color roadGrey = new Color(68,68,68);
|
|
static final Color lineWhite = new Color(235, 235, 235);
|
|
static final Color lineYellow = new Color(218, 190, 93);
|
|
static final Color startGreen = new Color(13, 255, 0);
|
|
static final Color startBlue = new Color(112, 113, 255);
|
|
static final Color playerBody = new Color(247, 17, 17);
|
|
static final Color Tires = new Color(0, 0, 0);
|
|
static final Color NPC1Body = new Color(0, 247, 0);
|
|
static final Color NPC2Body = new Color(221, 247, 0);
|
|
static final Color NPC3Body = new Color(247, 113, 0);
|
|
static final Color NPC4Body = new Color(0, 11, 247);
|
|
static final Color NPC5Body = new Color(247, 0, 182);
|
|
}
|