Skip to content

Instantly share code, notes, and snippets.

@elmarcoh
elmarcoh / rambox_whatsapp_dark.css
Last active February 1, 2020 00:42
Rambox custom code for Whatsapp dark mode (paste under "Custom Script" in rambox), stolen from https://userstyles.org/styles/142096/dark-whatsapp-theme-by-mew
function applycss(css){
var head = document.getElementsByTagName('head')[0];
var s = document.createElement('style');
s.setAttribute('type', 'text/css');
s.appendChild(document.createTextNode(css));
head.appendChild(s);
}
applycss(`
/**
* Everything you need to know is below:
@elmarcoh
elmarcoh / rbx_telegram_dark.css
Created January 9, 2020 01:37
Dark mode for Telegram on Rambox (paste in "custom script")
function applycss(css){
var head = document.getElementsByTagName('head')[0];
var s = document.createElement('style');
s.setAttribute('type', 'text/css');
s.appendChild(document.createTextNode(css));
head.appendChild(s);
}
applycss(`
body,
.modal-content {