input, textarea {
background: #000000 ! important;
color: #FFFFFF ! important;
}
In conkeror, simply changed everything with a stylesheet in the .conkerorrc file (or folder).
in .conkerorrc/main.js
let (sheet = get_home_directory()) {
sheet.appendRelativePath(".conkerorrc/stylesheets/input_color_fix-user.css");
register_user_stylesheet(make_uri(sheet));
}
in .conkerorrc/stylesheet/input_color_fix-user.css
input, textarea {
background: #000000 ! important;
color: #FFFFFF ! important;
}