UNPKG

react-typing-test

Version:

A react component typing test, user input and wpm calculations.

11 lines (10 loc) 358 B
export type Theme = { mainBackgroundColor: string; altBackgroundColor: string; mainTextColor: string; mainHighlightColor: string; correctColor: string; incorrectColor: string; }; export type ThemeNames = "Purpleish" | "Patagonia" | "Orangish" | "Miami" | "WarmNight"; export declare const themes: Record<ThemeNames, Theme>;