Files
Trilium/apps/client/src/widgets/note_map/utils.ts

7 lines
216 B
TypeScript
Raw Normal View History

2025-10-04 11:07:16 +03:00
export function rgb2hex(rgb: string) {
return `#${(rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/) || [])
.slice(1)
.map((n) => parseInt(n, 10).toString(16).padStart(2, "0"))
.join("")}`;
}