Skip to content

Instantly share code, notes, and snippets.

@ImOnALampshade
ImOnALampshade / monokai.json
Last active August 1, 2023 04:14
Monokai (Spectrum) Windows Terminal Theme
{
"background": "#222222",
"black": "#191919",
"blue": "#525053",
"brightBlack": "#363537",
"brightBlue": "#8B888F",
"brightCyan": "#C5F2FA",
"brightGreen": "#CCE498",
"brightPurple": "#B2ACE2",
"brightRed": "#FF97BD",
@ImOnALampshade
ImOnALampshade / jsx.js
Last active July 29, 2023 03:26
JSX function for creating DOM elements
function jsx(tag, attrs, ...children) {
let elem = document.createElement(tag);
for (const attr in attrs) {
const val = attrs[attr];
elem.setAttribute(attr, val);
}
for (const child of children) {
if (child instanceof HTMLElement) {