/** Colors of balls */ export const COLORS = ["red", "green", "blue", "orange", "#ff009d", "white", "cyan"]; /** Number of {@linkcode Ball} generated each turn */ export const START_NO_OF_BALLS = 3; /** Height of map */ export const MAP_HEIGHT = 9; /** Width of map */ export const MAP_WIDTH = 9; /** Size of html td element */ export const TD_SIZE = "50px"; /** Size of div that renders like a ball */ export const CIRCLE_SIZE = "35px"; /** How many {@linkcode Ball} there have to be in row to delete it */ export const DELETE_FROM_BALLS = 5;