cohost/html/pixels.tsx

40 lines
981 B
TypeScript
Raw Normal View History

2023-07-20 22:27:24 -04:00
import { ComponentChildren, JSX } from "preact";
import { Main, render_and_copy } from "./common.tsx";
// don't want to do randomly on since it's not unique anyway
2023-07-20 22:46:45 -04:00
const Pixel = () => (
2023-07-20 22:27:24 -04:00
<details
class="toggle"
style="position: relative; margin: 0; cursor: pointer;"
>
<summary
style="list-style: none; display: block; width: 100%; height: 100%;"
2023-07-20 22:46:45 -04:00
class="off"
></summary>
<div
style="display: block; width: 100%; height: 100%; position: absolute; top: 0; pointer-events: none;"
2023-07-20 22:46:45 -04:00
class="on"
></div>
2023-07-20 22:27:24 -04:00
</details>
);
const Pixels = ({
n,
color_a,
color_b,
}: {
n: number;
color_a: string;
color_b: string;
2023-07-20 22:46:45 -04:00
}) => <>{...new Array(n).fill(null).map(Pixel)}</>;
2023-07-20 22:27:24 -04:00
render_and_copy(
<Main>
<Pixels
n={20 ** 2}
color_a="rgb(var(--color-background))"
color_b="rgb(var(--color-foreground))"
/>
2023-07-20 22:27:24 -04:00
</Main>
);