I want to change the color of the select box from white to purple I change the color of the select box but changed only the text not the arrow.I want to change the color of the arrow.I want to change the arrow color to the border color(purple)
.views-widget select {
border:1px solid #9b8aa8;
background-color: #8b3ca8;
color:#9b8aa8;
height:30px;
font-size:10pt;
width: 199px;
margin-left: 13px;
padding: 0 5px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.views-widget {
width: 199px;
position: relative;
}
.views-widget::before {
content: '';
display: block;
border: 5px solid transparent;
border-top-color: #fff;
position: absolute;
right: 0px;
top: calc(50% - 2px);
}
<div class="views-widget">
<select id="edit-field-perspective-menu-tid" name="field_perspective_menu_tid" class="form-select">
<option value="All" selected="selected">-Success Stories-</option> <option value="1">Blogs</option>
<option value="2">Case Studies</option>
<option value="3">Videos</option>
<option value="4">White Papers</option>
</select>
</div>