Push balls to opponent's side online. That's it. That's the game.
google-balls-the-thrusting-production.up.railway.app
googleballs
1export const colors = {
2 googleBlue: "#4285F4",
3 googleRed: "#EA4335",
4 googleYellow: "#FBBC05",
5 googleGreen: "#34A853",
6 googlePurple: "#9C27B0",
7} as const;
8
9export const teamColors = {
10 left: colors.googleBlue,
11 right: colors.googleRed,
12} as const;
13
14export const puckColors = [
15 colors.googleBlue,
16 colors.googleRed,
17 colors.googleYellow,
18 colors.googleGreen,
19 colors.googlePurple,
20] as const;
21
22export const cssTheme = {
23 colors: {
24 "google-blue": colors.googleBlue,
25 "google-red": colors.googleRed,
26 "google-yellow": colors.googleYellow,
27 "google-green": colors.googleGreen,
28 "google-purple": colors.googlePurple,
29 "team-left": teamColors.left,
30 "team-right": teamColors.right,
31 },
32} as const;