textFieldColors

@Composable
fun textFieldColors(focusedTextColor: Color = FilledAutocompleteTokens.FieldFocusInputTextColor.value, unfocusedTextColor: Color = FilledAutocompleteTokens.FieldInputTextColor.value, disabledTextColor: Color = FilledAutocompleteTokens.FieldDisabledInputTextColor.value.copy( alpha = FilledAutocompleteTokens.FieldDisabledInputTextOpacity ), errorTextColor: Color = FilledAutocompleteTokens.FieldErrorInputTextColor.value, focusedContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value, unfocusedContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value, disabledContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value, errorContainerColor: Color = FilledAutocompleteTokens.TextFieldContainerColor.value, cursorColor: Color = FilledAutocompleteTokens.TextFieldCaretColor.value, errorCursorColor: Color = FilledAutocompleteTokens.TextFieldErrorFocusCaretColor.value, selectionColors: TextSelectionColors = LocalTextSelectionColors.current, focusedIndicatorColor: Color = FilledAutocompleteTokens.TextFieldFocusActiveIndicatorColor.value, unfocusedIndicatorColor: Color = FilledAutocompleteTokens.TextFieldActiveIndicatorColor.value, disabledIndicatorColor: Color = FilledAutocompleteTokens.TextFieldDisabledActiveIndicatorColor.value.copy( alpha = FilledAutocompleteTokens.TextFieldDisabledActiveIndicatorOpacity ), errorIndicatorColor: Color = FilledAutocompleteTokens.TextFieldErrorActiveIndicatorColor.value, focusedLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldFocusLeadingIconColor.value, unfocusedLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldLeadingIconColor.value, disabledLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldDisabledLeadingIconColor.value.copy( alpha = FilledAutocompleteTokens.TextFieldDisabledLeadingIconOpacity ), errorLeadingIconColor: Color = FilledAutocompleteTokens.TextFieldErrorLeadingIconColor.value, focusedTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldFocusTrailingIconColor.value, unfocusedTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldTrailingIconColor.value, disabledTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldDisabledTrailingIconColor.value.copy( alpha = FilledAutocompleteTokens.TextFieldDisabledTrailingIconOpacity ), errorTrailingIconColor: Color = FilledAutocompleteTokens.TextFieldErrorTrailingIconColor.value, focusedLabelColor: Color = FilledAutocompleteTokens.FieldFocusLabelTextColor.value, unfocusedLabelColor: Color = FilledAutocompleteTokens.FieldLabelTextColor.value, disabledLabelColor: Color = FilledAutocompleteTokens.FieldDisabledLabelTextColor.value, errorLabelColor: Color = FilledAutocompleteTokens.FieldErrorLabelTextColor.value, focusedPlaceholderColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value, unfocusedPlaceholderColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value, disabledPlaceholderColor: Color = FilledAutocompleteTokens.FieldDisabledSupportingTextColor.value.copy( alpha = FilledAutocompleteTokens.FieldDisabledSupportingTextOpacity ), errorPlaceholderColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value, focusedPrefixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value, unfocusedPrefixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value, disabledPrefixColor: Color = FilledAutocompleteTokens.FieldDisabledSupportingTextColor.value.copy( alpha = FilledAutocompleteTokens.FieldDisabledSupportingTextOpacity ), errorPrefixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value, focusedSuffixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value, unfocusedSuffixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value, disabledSuffixColor: Color = FilledAutocompleteTokens.FieldDisabledSupportingTextColor.value.copy( alpha = FilledAutocompleteTokens.FieldDisabledSupportingTextOpacity ), errorSuffixColor: Color = FilledAutocompleteTokens.FieldSupportingTextColor.value): TextFieldColors

Creates a TextFieldColors that represents the default input text, container, and content colors (including label, placeholder, icons, etc.) used in a TextField within an ExposedDropdownMenuBox.

Parameters

focusedTextColor

the color used for the input text of this text field when focused

unfocusedTextColor

the color used for the input text of this text field when not focused

disabledTextColor

the color used for the input text of this text field when disabled

errorTextColor

the color used for the input text of this text field when in error state

focusedContainerColor

the container color for this text field when focused

unfocusedContainerColor

the container color for this text field when not focused

disabledContainerColor

the container color for this text field when disabled

errorContainerColor

the container color for this text field when in error state

cursorColor

the cursor color for this text field

errorCursorColor

the cursor color for this text field when in error state

selectionColors

the colors used when the input text of this text field is selected

focusedIndicatorColor

the indicator color for this text field when focused

unfocusedIndicatorColor

the indicator color for this text field when not focused

disabledIndicatorColor

the indicator color for this text field when disabled

errorIndicatorColor

the indicator color for this text field when in error state

focusedLeadingIconColor

the leading icon color for this text field when focused

unfocusedLeadingIconColor

the leading icon color for this text field when not focused

disabledLeadingIconColor

the leading icon color for this text field when disabled

errorLeadingIconColor

the leading icon color for this text field when in error state

focusedTrailingIconColor

the trailing icon color for this text field when focused

unfocusedTrailingIconColor

the trailing icon color for this text field when not focused

disabledTrailingIconColor

the trailing icon color for this text field when disabled

errorTrailingIconColor

the trailing icon color for this text field when in error state

focusedLabelColor

the label color for this text field when focused

unfocusedLabelColor

the label color for this text field when not focused

disabledLabelColor

the label color for this text field when disabled

errorLabelColor

the label color for this text field when in error state

focusedPlaceholderColor

the placeholder color for this text field when focused

unfocusedPlaceholderColor

the placeholder color for this text field when not focused

disabledPlaceholderColor

the placeholder color for this text field when disabled

errorPlaceholderColor

the placeholder color for this text field when in error state

focusedPrefixColor

the prefix color for this text field when focused

unfocusedPrefixColor

the prefix color for this text field when not focused

disabledPrefixColor

the prefix color for this text field when disabled

errorPrefixColor

the prefix color for this text field when in error state

focusedSuffixColor

the suffix color for this text field when focused

unfocusedSuffixColor

the suffix color for this text field when not focused

disabledSuffixColor

the suffix color for this text field when disabled

errorSuffixColor

the suffix color for this text field when in error state