Reputation:
providing my sandbox and code snippet below.
even I googled for placeholder css, got this link but still not helping me
https://www.w3schools.com/cssref/sel_placeholder.asp
https://codesandbox.io/s/react-codesandboxer-example-1q8nd
<Select
defaultValue={""}
label="Single select"
placeholder={" Placeholder test "}
options={flavourOptions}
theme={theme => ({
...theme,
borderRadius: 0,
colors: {
...theme.colors,
primary25: "hotpink",
primary: "black",
background: "red",
color:"red",
}
})}
/>
Upvotes: 0
Views: 4979
Reputation: 3189
According to react-select docs, the neutral50 response for placeholder's color.
Try this:
<Select
defaultValue={""}
label="Single select"
placeholder={" Placeholder test "}
options={flavourOptions}
theme={theme => ({
...theme,
borderRadius: 0,
colors: {
...theme.colors,
neutral50: 'red', // Placeholder color
}
})}
/>
Or you can do simply as below:
export default () => {
return (
<div>
<p>
We see that the final rendered output is not an input box, but rather a
set of divs with certain classes applied on them... so we just change
the class
</p>
<Select
defaultValue={""}
label="Single select"
placeholder="Placeholder test"
styles={colorStyles}
options={flavourOptions}
/>
</div>
);
};
const colorStyles = {
placeholder: defaultStyles => {
return {
...defaultStyles,
color: "blue"
};
}
};
Check this example: Example
Upvotes: 5
Reputation: 15031
The placeholder is actually a div, so you can style it via CSS in the following way:
.css-1wa3eu0-placeholder {
color: red !important;
}
p {
color: blue;
}
.myDiv > div:nth-child(2) > div > div > div:nth-child(1) {
font-size: 9px;
color: orange !important;
}
complete working example here
Upvotes: 1