mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2025-12-23 22:18:36 -05:00
Merge pull request #3201 from frewsxcv/tailwin
Introduce a type declaration file for Tailwind config colors.
This commit is contained in:
30
src/styles/tailwindColors.d.ts
vendored
Normal file
30
src/styles/tailwindColors.d.ts
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
declare module "styles/tailwindColors" {
|
||||
export interface TailwindColors {
|
||||
accessibleGreen: string;
|
||||
black: string;
|
||||
darkGray: string;
|
||||
darkGrayDisabled: string;
|
||||
darkModeGray: string;
|
||||
inatGreen: string;
|
||||
inatGreenDisabled: string;
|
||||
inatGreenDisabledDark: string;
|
||||
lightGray: string;
|
||||
mediumGray: string;
|
||||
mediumGrayGhost: string;
|
||||
warningRed: string;
|
||||
warningRedDisabled: string;
|
||||
warningYellow: string;
|
||||
white: string;
|
||||
yellow: string;
|
||||
red: string;
|
||||
green: string;
|
||||
blue: string;
|
||||
deepPink: string;
|
||||
deeppink: string;
|
||||
DeepPink: string;
|
||||
orange: string;
|
||||
}
|
||||
|
||||
const colors: TailwindColors;
|
||||
export default colors;
|
||||
}
|
||||
Reference in New Issue
Block a user