You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`background`|`--bg-color`|`#ffffff`|`#29232f`| Background color of the widget actor and dialog.|
116
-
|`backgroundHover`|`--bg-hover-color`|`#f6f6f7`|`#352f3b`|The background color of widget actor when in a hover state |
117
-
|`foreground`|`--fg-color`|`#2b2233`|`#ebe6ef`|The foreground color, e.g. text color |
118
-
|`error`|`--error-color`|`#df3338`|`#f55459`| Color used for error related components (e.g. text color when there was an error submitting feedback) |
119
-
|`success`|`--success-color`|`#268d75`|`#2da98c`| Color used for success-related components (e.g. text color when feedback is submitted successfully) |
118
+
|`background`|`--background`|`#ffffff`|`#29232f`| Background color of the widget actor and dialog |
119
+
|`backgroundHover`|`--background-hover`|`#f6f6f7`|`#352f3b`|Background color of widget actor when in a hover state |
120
+
|`foreground`|`--foreground`|`#2b2233`|`#ebe6ef`|Foreground color, e.g. text color |
121
+
|`error`|`--error`|`#df3338`|`#f55459`| Color used for error related components (e.g. text color when there was an error submitting feedback) |
122
+
|`success`|`--success`|`#268d75`|`#2da98c`| Color used for success-related components (e.g. text color when feedback is submitted successfully) |
120
123
|`border`|`--border`|`1.5px solid rgba(41, 35, 47, 0.13)`|`1.5px solid rgba(235, 230, 239, 0.15)`| The border style used for the widget actor and dialog |
121
124
|`boxShadow`|`--box-shadow`|`0px 4px 24px 0px rgba(43, 34, 51, 0.12)`|`0px 4px 24px 0px rgba(43, 34, 51, 0.12)`| The box shadow style used for the widget actor and dialog |
125
+
|`submitBackground`|`--submit-background`|`rgba(88, 74, 192, 1)`|`rgba(88, 74, 192, 1)`| Background color for the submit button |
126
+
|`submitBackgroundHover`|`--submit-background-hover`|`rgba(108, 95, 199, 1)`|`rgba(108, 95, 199, 1)`| Background color when hovering over the submit button |
127
+
|`submitBorder`|`--submit-border`|`rgba(108, 95, 199, 1)`|`rgba(108, 95, 199, 1)`| Border style for the submit button |
128
+
|`submitForeground`|`--submit-foreground`|`#ffffff`|`#ffffff`| Foreground color for the submit button |
129
+
|`cancelBackground`|`--cancel-background`|`transparent`|`transparent`| Background color for the cancel button |
130
+
|`cancelBackgroundHover`|`--cancel-background-hover`|`var(--background-hover)`|`var(--background-hover)`| Background color when hovering over the cancel button |
131
+
|`cancelBorder`|`--cancel-border`|`var(--border)`|`var(--border)`| Border style for the cancel button |
132
+
|`cancelForeground`|`--cancel-foreground`|`var(--foreground)`|`var(--foreground)`| Foreground color for the cancel button |
133
+
|`inputBackground`|`--input-background`|`inherit`|`inherit`| Background color for form inputs |
134
+
|`inputForeground`|`--input-foreground`|`inherit`|`inherit`| Foreground color for form inputs |
135
+
|`inputBorder`|`--input-border`|`var(--border)`|`var(--border)`| Border styles for form inputs |
136
+
|`inputBorderFocus`|`--input-border-focus`|`rgba(108, 95, 199, 1)`|`rgba(108, 95, 199, 1)`| Border styles for form inputs when focused |
122
137
123
138
Here is an example of customizing only the background color for the light theme using the Feedback constructor configuration.
124
139
```javascript
@@ -133,7 +148,7 @@ Or the same example above but using the CSS variables method:
0 commit comments