Skip to content

Instantly share code, notes, and snippets.

@nrdmn
Created August 11, 2019 20:52
Show Gist options
  • Save nrdmn/270cfb5515eea8df2fc0c2b987ef4fe1 to your computer and use it in GitHub Desktop.
Save nrdmn/270cfb5515eea8df2fc0c2b987ef4fe1 to your computer and use it in GitHub Desktop.
ANSI colors to IRC colors
s/\x1b\[0m/\x0f/g
s/\x1b\[1m/\x02/g
s/\x1b\[30m/\x031/g
s/\x1b\[31m/\x035/g
s/\x1b\[32m/\x033/g
s/\x1b\[33m/\x037/g
s/\x1b\[34m/\x032/g
s/\x1b\[35m/\x036/g
s/\x1b\[36m/\x0310/g
s/\x1b\[37m/\x0315/g
s/\x1b\[\(1;30\|90\)m/\x0314/g
s/\x1b\[\(1;31\|91\)m/\x034/g
s/\x1b\[\(1;32\|92\)m/\x039/g
s/\x1b\[\(1;33\|93\)m/\x038/g
s/\x1b\[\(1;34\|94\)m/\x0312/g
s/\x1b\[\(1;35\|95\)m/\x0313/g
s/\x1b\[\(1;36\|96\)m/\x0311/g
s/\x1b\[\(1;37\|97\)m/\x030/g
@iakat
Copy link

iakat commented May 26, 2025

other way around

s/\x0f/\x1b\[0m/g
s/\x02/\x1b\[1m/g
s/\x031/\x1b\[30m/g
s/\x035/\x1b\[31m/g
s/\x033/\x1b\[32m/g
s/\x037/\x1b\[33m/g
s/\x032/\x1b\[34m/g
s/\x036/\x1b\[35m/g
s/\x0310/\x1b\[36m/g
s/\x0315/\x1b\[37m/g
s/\x0314/\x1b\[\(1;30\|90\)m/g
s/\x034/\x1b\[\(1;31\|91\)m/g
s/\x039/\x1b\[\(1;32\|92\)m/g
s/\x038/\x1b\[\(1;33\|93\)m/g
s/\x0312/\x1b\[\(1;34\|94\)m/g
s/\x0313/\x1b\[\(1;35\|95\)m/g
s/\x0311/\x1b\[\(1;36\|96\)m/g
s/\x030/\x1b\[\(1;37\|97\)m/g

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment