uyem
Version:
WebRTC client-server SFU application
29 lines (28 loc) • 574 B
TypeScript
/// <reference types="react" />
import { ThemeType } from './types';
export declare type Themes = {
dark: Theme;
light: Theme;
};
export interface Color {
paper: string;
text: string;
active: string;
white: string;
red: string;
yellow: string;
blue: string;
black: string;
green: string;
cyan: string;
}
export interface Colors {
light: Color;
dark: Color;
}
export interface Theme {
button: React.CSSProperties;
link: React.CSSProperties;
colors: Colors[ThemeType];
}
export declare const themes: Themes;