chroline/lynk

View on GitHub
src/util/theme.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Fonts = {
  body: string;
  heading: string;
  mono: string;
};

export type Colors = Record<string, string | Record<string, string>>;

export default interface Theme {
  fonts: Fonts;
  colors: Colors;
}