Configurable theme, change default to blue

This commit is contained in:
Joey Yakimowich-Payne 2026-01-13 11:04:52 -07:00
commit ec318e9e9a
No known key found for this signature in database
GPG key ID: DDF6AF5B21B407D4
8 changed files with 46 additions and 25 deletions

View file

@ -5,8 +5,8 @@ export const COLORS = {
blue: 'bg-blue-600',
yellow: 'bg-yellow-600',
green: 'bg-green-600',
purple: 'bg-[#46178f]',
purpleLight: 'bg-[#864cbf]',
purple: 'bg-theme-primary',
purpleLight: 'bg-theme-primary/70',
};
export const SHAPES = {
@ -25,9 +25,8 @@ export const QUESTION_TIME = 20; // seconds
export const POINTS_PER_QUESTION = 1000;
export const PLAYER_COLORS = [
'#46178f',
'#2563eb',
'#e21b3c',
'#1368ce',
'#26890c',
'#ffa602',
'#d89e00',
@ -37,4 +36,5 @@ export const PLAYER_COLORS = [
'#ff6b6b',
'#4ecdc4',
'#45b7d1',
'#8b5cf6',
];