UNPKG

campus-tex-cli

Version:

A CLI to quickly generate latex files for presentations or task assignments, using the unofficial template by the University of Stuttgart.

14 lines (11 loc) 226 B
import chalk, { ChalkInstance } from "chalk"; type Props = { text: string; highlight: string } export const coloredLog = ({text, highlight}: Props) => { console.log( highlight, `${text}` ); }