Skip to content

Commit

Permalink
feat: add Theme types
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswynn committed Jan 14, 2020
1 parent 103334a commit f34c824
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
declare type Theme = {
spaces: string[];
colors: {
mojogreen: string;
white: string;
dark: string;
gray: string;
mediumGray: string;
darkGray: string;
yellow: string;
scheme: {
dark: {
bg: string;
fg: string;
};
light: {
bg: string;
fg: string;
};
gray: {
bg: string;
fg: string;
};
};
};
maxWidths: string[];
fontFamilies: { main: string; display: string };
fontSizes: string[];
lineHeights: number[];
opacities: number[];
zIndices: number[];
};

0 comments on commit f34c824

Please sign in to comment.