-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andre Rabold
committed
Oct 26, 2021
1 parent
0ef0ce6
commit f296ffc
Showing
14 changed files
with
17,275 additions
and
5,375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,126 @@ | ||
declare const _default: (theme: import("../theme").ThemeProps) => import("react-native").StyleSheet.NamedStyles<{ | ||
bgPrimary: unknown; | ||
bgPrimaryLight: unknown; | ||
bgPrimaryDark: unknown; | ||
bgPrimaryContrast: unknown; | ||
bgSecondary: unknown; | ||
bgSecondaryLight: unknown; | ||
bgSecondaryDark: unknown; | ||
bgSecondaryContrast: unknown; | ||
bgInfo: unknown; | ||
bgInfoLight: unknown; | ||
bgInfoDark: unknown; | ||
bgInfoContrast: unknown; | ||
bgSuccess: unknown; | ||
bgSuccessLight: unknown; | ||
bgSuccessDark: unknown; | ||
bgSuccessContrast: unknown; | ||
bgError: unknown; | ||
bgErrorLight: unknown; | ||
bgErrorDark: unknown; | ||
bgErrorContrast: unknown; | ||
bgWarning: unknown; | ||
bgWarningLight: unknown; | ||
bgWarningDark: unknown; | ||
bgWarningContrast: unknown; | ||
bgPaper: unknown; | ||
bgSelected: unknown; | ||
bgDisabled: unknown; | ||
bgFocused: unknown; | ||
bgMuted: unknown; | ||
bgWhite: unknown; | ||
bgGray100: unknown; | ||
bgGray200: unknown; | ||
bgGray300: unknown; | ||
bgGray400: unknown; | ||
bgGray500: unknown; | ||
bgGray600: unknown; | ||
bgGray700: unknown; | ||
bgGray800: unknown; | ||
bgGray900: unknown; | ||
bgBlack: unknown; | ||
bgTransparent: unknown; | ||
}>; | ||
declare const _default: (theme: import("../theme").ThemeProps) => { | ||
bgPrimary: { | ||
backgroundColor: string; | ||
}; | ||
bgPrimaryLight: { | ||
backgroundColor: string; | ||
}; | ||
bgPrimaryDark: { | ||
backgroundColor: string; | ||
}; | ||
bgPrimaryContrast: { | ||
backgroundColor: string; | ||
}; | ||
bgSecondary: { | ||
backgroundColor: string; | ||
}; | ||
bgSecondaryLight: { | ||
backgroundColor: string; | ||
}; | ||
bgSecondaryDark: { | ||
backgroundColor: string; | ||
}; | ||
bgSecondaryContrast: { | ||
backgroundColor: string; | ||
}; | ||
bgInfo: { | ||
backgroundColor: string; | ||
}; | ||
bgInfoLight: { | ||
backgroundColor: string; | ||
}; | ||
bgInfoDark: { | ||
backgroundColor: string; | ||
}; | ||
bgInfoContrast: { | ||
backgroundColor: string; | ||
}; | ||
bgSuccess: { | ||
backgroundColor: string; | ||
}; | ||
bgSuccessLight: { | ||
backgroundColor: string; | ||
}; | ||
bgSuccessDark: { | ||
backgroundColor: string; | ||
}; | ||
bgSuccessContrast: { | ||
backgroundColor: string; | ||
}; | ||
bgError: { | ||
backgroundColor: string; | ||
}; | ||
bgErrorLight: { | ||
backgroundColor: string; | ||
}; | ||
bgErrorDark: { | ||
backgroundColor: string; | ||
}; | ||
bgErrorContrast: { | ||
backgroundColor: string; | ||
}; | ||
bgWarning: { | ||
backgroundColor: string; | ||
}; | ||
bgWarningLight: { | ||
backgroundColor: string; | ||
}; | ||
bgWarningDark: { | ||
backgroundColor: string; | ||
}; | ||
bgWarningContrast: { | ||
backgroundColor: string; | ||
}; | ||
bgPaper: { | ||
backgroundColor: string; | ||
}; | ||
bgSelected: { | ||
backgroundColor: string; | ||
}; | ||
bgDisabled: { | ||
backgroundColor: string; | ||
}; | ||
bgFocused: { | ||
backgroundColor: string; | ||
}; | ||
bgMuted: { | ||
backgroundColor: string; | ||
}; | ||
bgWhite: { | ||
backgroundColor: string; | ||
}; | ||
bgGray100: { | ||
backgroundColor: string; | ||
}; | ||
bgGray200: { | ||
backgroundColor: string; | ||
}; | ||
bgGray300: { | ||
backgroundColor: string; | ||
}; | ||
bgGray400: { | ||
backgroundColor: string; | ||
}; | ||
bgGray500: { | ||
backgroundColor: string; | ||
}; | ||
bgGray600: { | ||
backgroundColor: string; | ||
}; | ||
bgGray700: { | ||
backgroundColor: string; | ||
}; | ||
bgGray800: { | ||
backgroundColor: string; | ||
}; | ||
bgGray900: { | ||
backgroundColor: string; | ||
}; | ||
bgBlack: { | ||
backgroundColor: string; | ||
}; | ||
bgTransparent: { | ||
backgroundColor: string; | ||
}; | ||
}; | ||
export default _default; |
Oops, something went wrong.