How to override css prefers-color-scheme setting
I have determined an appropriate solution, it is as follows: CSS will use variables and themes: // root/default variables :root { –font-color: #000; –link-color:#1C75B9; –link-white-color:#fff; –bg-color: rgb(243,243,243); } //dark theme [data-theme=”dark”] { –font-color: #c1bfbd; –link-color:#0a86da; –link-white-color:#c1bfbd; –bg-color: #333; } The variables are then called where necessary, for example: //the redundancy is for backwards compatibility with … Read more