dev-resources.site
for different kinds of informations.
Day 12: Pico-co-colors π₯
Published at
12/12/2024
Categories
webdev
deno
beginners
webadvent
Author
valeriavg
Main Article
Author
9 person written this
valeriavg
open
We've already touched gradients in the terminal, but what if you'd like to simply color one line, word or phrase? Well, picocolors does exactly that nice and easy!
Install with your favourite package manager, e.g. deno add npm:picocolors
and create a file, e.g. main.ts
:
import pico from "picocolors";
console.log(
pico.redBright("Happy ") +
pico.greenBright("Holidays") +
pico.yellowBright("!")
);
Run with e.g. deno run -A ./main.ts
and enjoy the festive greeting:
Of course, you could always use ASCII Color codes directly, e.g. like so:
console.log(
"\u001b[91mHappy \u001b[92mHolidays\u001b[93m!"
); // 91 = Foreground bright red, 92 = Bright green and 93 is Bright yellow
But that's way less descriptive, isn't it?
Not to mention that picocolors
is NO_COLOR
friendly and comes with couple of extra beauties like italic
, bold
, dim
and inverse
.
Do try them out and share your creations!
Liked the content and would love to have more of it all year long?
deno Article's
30 articles in total
Deno docker
read article
Day 24: Paint by Pixels π¨
read article
Day 22: How the Tables have turned π
read article
Day 20: Not a Dedent! π§
read article
Day 23: Terminal Images πΌοΈ
read article
Day 19: Highlight'em up! π
read article
Day 18: Got a millisecond? β±οΈ
read article
You can omit `run` from `deno run` command
read article
Day 17: Terminal Links & Other Escapes π
read article
Day 8: D-8 π±
read article
Day 7: Your input is valid ποΈ
read article
π Rust Coders, Donβt Miss These 25 Resource Picks
read article
Day 9: Terminal Forms π
read article
Dynamic DNS sync with Cloudflare
read article
Day 14: Keep on Spinning! β»οΈ
read article
π Automate Your PostgreSQL Backups with Ease! π³
read article
Day 21: In the name of Progress! π
read article
π Automate Your PostgreSQL Backups with Ease! π³
read article
Runtime challenge: Bun vs Node
read article
I built a Fullstack Deno 2 application
read article
Self Writing Lang Graph State
read article
Supabase Just Got More Powerful: Queue, Cron, and Background Tasks in Edge Functions
read article
Day 4: ASCII Art Fonts ποΈ
read article
Day 13: I love Boxes! π¦
read article
#2 Daily Rabbit Holes: Diving Deeper into Rust, V8, and the JavaScriptβ’οΈ Saga
read article
Day 12: Pico-co-colors π₯
currently reading
π Bun vs Deno: When to Use Each in Your Projects?
read article
Exploring Bun.js Over Deno: A Humble Developer's Tale
read article
Day 10: Ho-ho-hono! π₯
read article
Benchmarking in Node.js vs Deno: A Comprehensive Comparison
read article
Featured ones: