Any idea what is the default border color for MDCTextInputControllerOutlined and where it is defined?

I want to use this similar color for custom UITextField.
The title doesn't have a [Component] prefix.
The outlined controller's border color is controlled with normalColor. And normalColor defaults to UIColor.lightGrayColor. Hope that helps you!
Thanks @romoore for your reply. Can you please tell me how to change the default black text color in above image when the field is not in focus?
You can configure the placeholder color for Outlined text fields using 3 properties. Each property controls the placeholder text color in a different state:
|State|Property|Example|
|---|---|---|
|textField.text == niltextField.isFirstResponder == NO |inlinePlaceholderColor|controller.inlinePlaceholderColor = UIColor.purpleColor;
|
|textField.text != niltextField.isFirstResponder == NO|floatingPlaceholderNormalColor|controller.floatingPlaceholderNormalColor = UIColor.redColor;
|
|textField.isFirstResponder = YES|floatingPlaceholderActiveColor|controller.floatingPlaceholderActiveColor = UIColor.brownColor;`
|
Most helpful comment
You can configure the placeholder color for Outlined text fields using 3 properties. Each property controls the placeholder text color in a different state:
|State|Property|Example|
|
|
|
|---|---|---|
|
textField.text == niltextField.isFirstResponder == NO|inlinePlaceholderColor|controller.inlinePlaceholderColor = UIColor.purpleColor;|
textField.text != niltextField.isFirstResponder == NO|floatingPlaceholderNormalColor|controller.floatingPlaceholderNormalColor = UIColor.redColor;|
textField.isFirstResponder = YES|floatingPlaceholderActiveColor|controller.floatingPlaceholderActiveColor = UIColor.brownColor;`