-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIUiOptions.ts
46 lines (46 loc) · 1.81 KB
/
IUiOptions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
export interface IUiOptions {
appLinkBackgroundColor: string;
appLinkIconForegroundColor: string;
appLinkLabelForegroundColor: string;
qrCodeForegroundColor: string;
qrCodeErrorForegroundColor: string;
verificationCodeForegroundColor: string;
verificationCodeValueForegroundColor: string;
usernamelessErrorForegroundColor: string;
usernamelessErrorRetryButtonForegroundColor: string;
formDividerColor: string;
formMethodTitleForegroundColor: string;
formMethodDescriptionForegroundColor: string;
formMethodLinkForegroundColor: string;
promptForegroundColor: string;
promptDescriptionForegroundColor: string;
promptInfoForegroundColor: string;
promptErrorForegroundColor: string;
promptBackButtonForegroundColor: string;
promptPurposeForegroundColor: string;
promptPurposeDetailForegroundColor: string;
formButtonBackgroundColor: string;
formButtonForegroundColor: string;
formButtonHoverBackgroundColor: string;
formButtonHoverForegroundColor: string;
formButtonDisabledBackgroundColor: string;
formButtonDisabledForegroundColor: string;
formFieldLabelForegroundColor: string;
formFieldErrorForegroundColor: string;
formInputBackgroundColor: string;
formInputForegroundColor: string;
optionCardBackgroundColor: string;
optionCardHoverBackgroundColor: string;
optionCardIconForegroundColor: string;
optionCardLabelForegroundColor: string;
optionCardDescriptionForegroundColor: string;
qrCodeLoaderColor: string;
qrCodeLoaderActiveColor1: string;
qrCodeLoaderActiveColor2: string;
progressLoaderColor: string;
progressLoaderActiveColor1: string;
progressLoaderActiveColor2: string;
tabForegroundColor: string;
tabHoverForegroundColor: string;
tabActiveForegroundColor: string;
}