export const colors = { googleBlue: "#4285F4", googleRed: "#EA4335", googleYellow: "#FBBC05", googleGreen: "#34A853", googlePurple: "#9C27B0", } as const; export const teamColors = { left: colors.googleBlue, right: colors.googleRed, } as const; export const puckColors = [ colors.googleBlue, colors.googleRed, colors.googleYellow, colors.googleGreen, colors.googlePurple, ] as const; export const cssTheme = { colors: { "google-blue": colors.googleBlue, "google-red": colors.googleRed, "google-yellow": colors.googleYellow, "google-green": colors.googleGreen, "google-purple": colors.googlePurple, "team-left": teamColors.left, "team-right": teamColors.right, }, } as const;