Skip to content

Instantly share code, notes, and snippets.

View meodai's full-sized avatar
🐙
Probably coloring things

David Aerne meodai

🐙
Probably coloring things
View GitHub Profile
@meodai
meodai / generative-color-compositions-using-poline.markdown
Created June 27, 2023 22:56
generative color compositions using poline
@meodai
meodai / index.html
Created June 15, 2023 17:50
vanilla JS color-scale generator (supports p3/rec2020)
<div class="world" data-world></div>
@meodai
meodai / vectorScale.ts
Last active June 14, 2023 11:50
vectorScale
// function that scales an array of vectors to a given length and interpolates between the the vectors
// to create a smooth path
// input: array of vectors
// output: array of vectors
export type Vector = number[];
export function vectorScale(vectors: Vector[], length: number): Vector[] {
const result: Vector[] = [];
@meodai
meodai / army-painter.json
Created December 24, 2022 14:02
Proprietary Color Lists
[
{
"productline": "Warpaints",
"name": "Matt Black",
"productcode": "-",
"hex": "#231f20"
},
{
"productline": "Warpaints",
"name": "Matt White",
[
{
"name": "Science",
"title": "Pure Black",
"colors": [
{
"name": "Pure Sunshine",
"hex": "#ffe819"
},
{
@meodai
meodai / named-palettes.json
Created May 21, 2022 09:54
Sumruv palettes but with valid hex values and automatically named
This file has been truncated, but you can view the full file.
[
{
"id": "1",
"title": "Heart Cloudless",
"colors": [
{
"name": "Master Chief",
"hex": "#547d1d"
},
{
@meodai
meodai / tzprofiles.md
Last active November 18, 2021 18:21
tzprofiles

I am attesting that this GitHub handle meodai is linked to the Tezos account tz1gBTGc4Jc3fQ9WkQXJcFHBJB7RgUHkfaD6 for tzprofiles

sig:edsigtq2eVWWXeYGaU3HZKpNP5Qm9HrDBLV3WtqXDWDUkkZX8bs474u7TSYiNz9oaxu15F82zhDXjMC9DZdWcUE621fCBXCpFvq

@meodai
meodai / fec21.md
Last active September 28, 2021 12:09
Designing Systems FEC21 talk notes
@meodai
meodai / color-ramp-generator.markdown
Created July 24, 2021 21:52
color ramp generator

color ramp generator

simple function that generates color palettes based on color ramps used by pixelartists

A Pen by David A. on CodePen.

License.

@meodai
meodai / color-ramp-generator.markdown
Created July 24, 2021 21:02
color ramp generator

color ramp generator

simple function that generates color palettes based on color ramps used by pixelartists

A Pen by David A. on CodePen.

License.