I am working on sendgrid dynamic template HTML code. I want that slider to be filled with dynamic value by go lang code. In sendgrid, when i see the colour of the slider then colours are showing as it should, you can see it in below image:
But when i received email from test then i am gettting slider in grey colour?
Here is my HTML code for this:
<!DOCTYPE html>
<html>
<body style="margin: 0; padding: 20px; font-family: Arial, sans-serif;">
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="max-width: 400px; margin: 0 auto;">
<tr>
<td align="center" style="padding: 20px 0;">
<input type="range" min="0" max="100" value="80" class="custom-slider" disabled="" style="
-webkit-appearance: none !important;
-moz-appearance: none !important;
appearance: none !important;
width: 100% !important;
height: 8px !important;
background: linear-gradient(to right, #FF8444 80%, #3C2A20 80%) !important;
border-radius: 5px !important;
outline: none !important;
border: none !important;
box-shadow: none !important;
color: #FF8444 !important;
accent-color: #FF8444 !important;
">
</td>
</tr>
</table>
</body>
</html>
How i can add same colour in email as it is in sendgrid?

