Initial commit
This commit is contained in:
commit
c87ebf0a74
22 changed files with 4973 additions and 0 deletions
25
constants.ts
Normal file
25
constants.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue