kaboot/constants.ts

25 lines
591 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-[#46178f]',
purpleLight: 'bg-[#864cbf]',
};
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;