9 lines
333 B
TypeScript
9 lines
333 B
TypeScript
export const DEFAULT_GRID_SIZE = 10;
|
|
export const SCRAMBLE_MOVES = 30; // Number of random clicks to scramble the board
|
|
|
|
// Visual configuration
|
|
export const COLOR_ON = 'bg-indigo-500';
|
|
export const COLOR_OFF = 'bg-slate-200';
|
|
export const COLOR_ON_HOVER = 'hover:bg-indigo-600';
|
|
export const COLOR_OFF_HOVER = 'hover:bg-slate-300';
|