Skip to content

Instantly share code, notes, and snippets.

View grhbit's full-sized avatar
🎯
Focusing

Gwon Seonggwang grhbit

🎯
Focusing
  • Tokyo, Japan
View GitHub Profile
@grhbit
grhbit / 24-bit-color.sh
Last active July 10, 2024 18:54 — forked from lifepillar/24-bit-color.sh
Test 24 bit colors in terminals
#!/bin/bash
#
# This file echoes a bunch of 24-bit color codes
# to the terminal to demonstrate its functionality.
# The foreground escape sequence is ^[38;2;<r>;<g>;<b>m
# The background escape sequence is ^[48;2;<r>;<g>;<b>m
# <r> <g> <b> range from 0 to 255 inclusive.
# The escape sequence ^[0m returns output to default
setBackgroundColor()