/// @type Color
$input-color: $black !default;
+/// Font color of placeholder text within text inputs.
+/// @type Color
+$input-placeholder-color: $medium-gray !default;
+
/// Font family of text inputs.
/// @type Font
$input-font-family: inherit !default;
}
}
- // Disabled/readonly state
input,
textarea {
+ // Placeholder text
+ &::placeholder {
+ color: $input-placeholder-color;
+ }
+
+ // Disabled/readonly state
&:disabled,
&[readonly] {
background-color: $input-background-disabled;