سي إس إس CSS كيفية تغيير خلفية الحقول Selected Fields
How to avoid "-internal-autofill-selected" style to be applied?
CSS - set the background color of ::selection in an INPUT or TEXTAREA in webkit / chrome?
input:-internal-autofill-selected {


هذا كود لون خلفية Chrome Field Select

كود:
 input:-webkit-autofill,
  input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
  }
هذا كود لون تظليل النص

كود:
::selection {
    background: #FF5700;
      color: #fff;
}
هذا كود لون مؤشر الماوس

كود:
caret-color: #ff5700;
المرجع:
https://stackoverflow.com/questions/...-to-be-applied