Set up overview screen with click handlers
This commit is contained in:
parent
a4bb1655d0
commit
954cc1fe72
7 changed files with 93 additions and 8 deletions
|
|
@ -1,4 +1,16 @@
|
|||
export const colors: { [key: string]: string } = {
|
||||
interface Colors {
|
||||
greyLighter: string;
|
||||
greyLight: string;
|
||||
grey: string;
|
||||
greyDark: string;
|
||||
blueGrey: string;
|
||||
redLight: string;
|
||||
red: string;
|
||||
redDark: string;
|
||||
black: string;
|
||||
}
|
||||
|
||||
export const colors: Colors = {
|
||||
greyLighter: '#EBEEF2',
|
||||
greyLight: '#D0D5D9',
|
||||
grey: '#B0B7BF',
|
||||
|
|
|
|||
Reference in a new issue