themer
Version:
Customizable theme creator for editors, terminals, wallpaper, and more.
13 lines • 415 B
JavaScript
import { colorSetToVariants } from '../color-set/index.js';
const template = {
name: 'Test',
render: async function* (colorSet) {
yield* colorSetToVariants(colorSet).map(({ title }) => ({
path: `${title.kebab}.txt`,
content: title.human,
}));
},
renderInstructions: (paths) => paths.join('\n'),
};
export default template;
//# sourceMappingURL=template.js.map