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
/* The primary surface color is used for the button text color */
202
+
--fui-primary-surface: var(--color-white);
203
+
/* The text color used for body text */
204
+
--fui-text: var(--color-black);
205
+
/* The muted text color used for body text, such as subtitles */
206
+
--fui-text-muted: var(--color-gray-800);
207
+
/* The background color of the cards */
208
+
--fui-background: var(--color-white);
209
+
/* The border color used for none input fields */
210
+
--fui-border: var(--color-gray-200);
211
+
/* The input color used for input fields */
212
+
--fui-input: var(--color-gray-300);
213
+
/* The error color used for error messages */
214
+
--fui-error: var(--color-red-500);
215
+
/* The radius used for the input fields */
216
+
--fui-radius: var(--radius-sm);
217
+
/* The radius used for the cards */
218
+
--fui-radius-card: var(--radius-xl);
219
+
}
220
+
```
221
+
222
+
The default values are based on the [TailwindCSS](https://tailwindcss.com/docs/theme) theme variables. You can override these values with other TailwindCSS theme variables, or custom CSS values.
0 commit comments