ipv4.army/test.ts
seth 3bc40382d6
Some checks failed
Code quality checks / biome (push) Has been cancelled
blah blah help me
2025-05-18 18:49:17 -04:00

15 lines
310 B
TypeScript

import { getTheme } from "./src/back/utilities/themer";
//console.log(getTheme("#ffddc4"));
const colorMap = {
online: "#00ff00",
idle: "#ffff00",
dnd: "#ff0000",
offline: "",
streaming: "#ff00ff",
};
Object.entries(colorMap).forEach(([key, value]) => {
console.log(key, getTheme(value), "\n\n");
});