~starkingdoms/starkingdoms

ref: cfc1677716d06e825c10e6bb38eec2a0e80ba9a4 starkingdoms/starkingdoms-client/src/planet_colors.ts -rw-r--r-- 198 bytes
cfc16777 — ghostlyzsh position is now rounded to be readable 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
import { PlanetType } from "./protocol.ts";

export function planet_color(type: PlanetType): string {
  if (type === PlanetType.Earth) {
    return "limegreen";
  } else {
    return "white";
  }
}