14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
(() => {
|
|
if (window.top === window.self) {
|
|
return;
|
|
}
|
|
const topDoc = window.top!.document;
|
|
const style = topDoc.createElement('style');
|
|
style.textContent = [
|
|
'body { background-color: #222222; color: #dddddd; }',
|
|
'#banner { background-color: #226644; }',
|
|
'.executing { background-color: #662233; }',
|
|
].join('\n');
|
|
topDoc.head.append(style);
|
|
})();
|