40 lines
793 B
TypeScript
40 lines
793 B
TypeScript
import { Triangle, Diamond, Circle, Square } from 'lucide-react';
|
|
|
|
export const COLORS = {
|
|
red: 'bg-red-600',
|
|
blue: 'bg-blue-600',
|
|
yellow: 'bg-yellow-600',
|
|
green: 'bg-green-600',
|
|
purple: 'bg-theme-primary',
|
|
purpleLight: 'bg-theme-primary/70',
|
|
};
|
|
|
|
export const SHAPES = {
|
|
triangle: Triangle,
|
|
diamond: Diamond,
|
|
circle: Circle,
|
|
square: Square,
|
|
};
|
|
|
|
export const BOT_NAMES = [
|
|
"QuizWiz", "FastFinger", "Brainiac", "KnowItAll", "Guesser",
|
|
"LuckyStrike", "OwlFan", "Kahootie", "ZigZag", "Pixel"
|
|
];
|
|
|
|
export const QUESTION_TIME = 20; // seconds
|
|
export const POINTS_PER_QUESTION = 1000;
|
|
|
|
export const PLAYER_COLORS = [
|
|
'#2563eb',
|
|
'#e21b3c',
|
|
'#26890c',
|
|
'#ffa602',
|
|
'#d89e00',
|
|
'#0aa3a3',
|
|
'#b8008a',
|
|
'#6a4c93',
|
|
'#ff6b6b',
|
|
'#4ecdc4',
|
|
'#45b7d1',
|
|
'#8b5cf6',
|
|
];
|