Public
Edited
Apr 11, 2024
1 star
Insert cell
Insert cell
Insert cell
cielabScatter(colors.filter((c) => c.type === "color").map((c) => c.value))
Insert cell
Insert cell
Insert cell
displayPalette(palette.filter((d, i) => i > 0))
Insert cell
displayPalette(v3)
Insert cell
displayPalette(v3, { darkMode: true })
Insert cell
JSON.stringify(palette.filter((d, i) => i > 0))
Insert cell
Insert cell
v3 = [
"#00aeff",
"#e7c447",
"#cc2027",
"#9fd4ae",
"#f8c8db",
"#00acac",
"#6e53a3",
"#006d9a",
"#553e36",
"#c0c5cc"
]
Insert cell
observable10 = [
"#4269d0", // blue
"#efb118", // orange
"#ff725c", // red
"#6cc5b0", // cyan
"#3ca951", // green
"#ff8ab7", // pink
"#a463f2", // purple
"#97bbf5", // light blue
"#9c6b4e", // brown
"#9498a0" // gray
]
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
function isComment(str) {
return str.trim().substr(0, 2) === "//";
}
Insert cell
isComment("// Hello")
Insert cell
function isHexColorProperty(str) {
const regex = /^\$[a-zA-Z0-9-]+\:\s\#[\da-fA-F]{3,6}\;$/;
return regex.test(str.trim());
}
Insert cell
function createEntry(str) {
if (isComment(str)) {
return { type: "heading", value: str.substr(2).trim() };
}
if (isHexColorProperty(str)) {
const cleanStr = str.trim().slice(0, -1);
const [key, value] = cleanStr.split(": ");
return { type: "color", key, value };
}
}
Insert cell
colors = d3
.text(
"https://raw.githubusercontent.com/HealthCatalyst/Fabric.Cashmere/ddeed039257b92306a3d6e8177237222e5b94e92/projects/cashmere/src/lib/sass/_colors.scss"
)
.then((t) =>
t
.split("\n")
.filter(
(l, i, a) =>
isHexColorProperty(l) ||
(isComment(l) && isHexColorProperty(a[i + 1]))
)
.map((l) => createEntry(l))
)
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more