Can someone help me with an issue I'm having on my website? I've been using CSS code to change the color of selected text, and it's working perfectly fine on every browser except for Safari. In Safari, the color appears darker than what I've specified. Here is the code I've been using:
<style>
::selection {
background-color: #003200;
color: #fff8dc;
}