Skip to content

Instantly share code, notes, and snippets.

@RabaDabaDoba
Forked from iamnewton/bash-colors.md
Last active April 16, 2024 14:54
Show Gist options
  • Save RabaDabaDoba/145049536f815903c79944599c6f952a to your computer and use it in GitHub Desktop.
Save RabaDabaDoba/145049536f815903c79944599c6f952a to your computer and use it in GitHub Desktop.
The entire table of ANSI color codes working in C!
/*
* This is free and unencumbered software released into the public domain.
*
* For more information, please refer to <https://unlicense.org>
*/
//Regular text
#define BLK "\e[0;30m"
#define RED "\e[0;31m"
#define GRN "\e[0;32m"
#define YEL "\e[0;33m"
#define BLU "\e[0;34m"
#define MAG "\e[0;35m"
#define CYN "\e[0;36m"
#define WHT "\e[0;37m"
//Regular bold text
#define BBLK "\e[1;30m"
#define BRED "\e[1;31m"
#define BGRN "\e[1;32m"
#define BYEL "\e[1;33m"
#define BBLU "\e[1;34m"
#define BMAG "\e[1;35m"
#define BCYN "\e[1;36m"
#define BWHT "\e[1;37m"
//Regular underline text
#define UBLK "\e[4;30m"
#define URED "\e[4;31m"
#define UGRN "\e[4;32m"
#define UYEL "\e[4;33m"
#define UBLU "\e[4;34m"
#define UMAG "\e[4;35m"
#define UCYN "\e[4;36m"
#define UWHT "\e[4;37m"
//Regular background
#define BLKB "\e[40m"
#define REDB "\e[41m"
#define GRNB "\e[42m"
#define YELB "\e[43m"
#define BLUB "\e[44m"
#define MAGB "\e[45m"
#define CYNB "\e[46m"
#define WHTB "\e[47m"
//High intensty background
#define BLKHB "\e[0;100m"
#define REDHB "\e[0;101m"
#define GRNHB "\e[0;102m"
#define YELHB "\e[0;103m"
#define BLUHB "\e[0;104m"
#define MAGHB "\e[0;105m"
#define CYNHB "\e[0;106m"
#define WHTHB "\e[0;107m"
//High intensty text
#define HBLK "\e[0;90m"
#define HRED "\e[0;91m"
#define HGRN "\e[0;92m"
#define HYEL "\e[0;93m"
#define HBLU "\e[0;94m"
#define HMAG "\e[0;95m"
#define HCYN "\e[0;96m"
#define HWHT "\e[0;97m"
//Bold high intensity text
#define BHBLK "\e[1;90m"
#define BHRED "\e[1;91m"
#define BHGRN "\e[1;92m"
#define BHYEL "\e[1;93m"
#define BHBLU "\e[1;94m"
#define BHMAG "\e[1;95m"
#define BHCYN "\e[1;96m"
#define BHWHT "\e[1;97m"
//Reset
#define reset "\e[0m"
#define CRESET "\e[0m"
#define COLOR_RESET "\e[0m"

Regular Colors

Value Color
\e[0;30m Black
\e[0;31m Red
\e[0;32m Green
\e[0;33m Yellow
\e[0;34m Blue
\e[0;35m Purple
\e[0;36m Cyan
\e[0;37m White

Bold

Value Color
\e[1;30m Black
\e[1;31m Red
\e[1;32m Green
\e[1;33m Yellow
\e[1;34m Blue
\e[1;35m Purple
\e[1;36m Cyan
\e[1;37m White

Underline

Value Color
\e[4;30m Black
\e[4;31m Red
\e[4;32m Green
\e[4;33m Yellow
\e[4;34m Blue
\e[4;35m Purple
\e[4;36m Cyan
\e[4;37m White

Background

Value Color
\e[40m Black
\e[41m Red
\e[42m Green
\e[43m Yellow
\e[44m Blue
\e[45m Purple
\e[46m Cyan
\e[47m White

High Intensty

Value Color
\e[0;90m Black
\e[0;91m Red
\e[0;92m Green
\e[0;93m Yellow
\e[0;94m Blue
\e[0;95m Purple
\e[0;96m Cyan
\e[0;97m White

Bold High Intensty

Value Color
\e[1;90m Black
\e[1;91m Red
\e[1;92m Green
\e[1;93m Yellow
\e[1;94m Blue
\e[1;95m Purple
\e[1;96m Cyan
\e[1;97m White

High Intensty backgrounds

Value Color
\e[0;100m Black
\e[0;101m Red
\e[0;102m Green
\e[0;103m Yellow
\e[0;104m Blue
\e[0;105m Purple
\e[0;106m Cyan
\e[0;107m White

Reset

Value Color
\e[0m Reset
\e[0m CRESET
\e[0m COLOR_RESET
#include "ANSI-color-codes.h"
#include <stdio.h>
int main(){
printf(BRED "Hey this is the color red, and it's bold! \n" reset);
printf(RED "If" BLU "you" YEL "are" GRN "bored" CYN "do" MAG "this! \n" reset);
printf(BRED "If" BBLU "you" BYEL "are" BGRN "bored" BCYN "do" BMAG "this! \n" reset);
printf(URED "If" UBLU "you" UYEL "are" UGRN "bored" UCYN "do" UMAG "this! \n" reset);
return 0;};
Copy link

ghost commented Jun 23, 2020

Thanks a lot, this is great

@nbknm
Copy link

nbknm commented Jul 1, 2020

A-mazing! Thanks!

@wdlkmpx
Copy link

wdlkmpx commented Sep 25, 2020

I have a local copy, I added this license (the suggested license):

/*
 * This is free and unencumbered software released into the public domain.
 *
 * For more information, please refer to <https://unlicense.org>
 */

@RabaDabaDoba
Copy link
Author

I'll add that, thanks =)

Copy link

ghost commented Oct 29, 2020

Have been looking for this. Thanks a lot!

@RabaDabaDoba
Copy link
Author

Have been looking for this. Thanks a lot!

Happy to help!

@yuharsenergi
Copy link

I'll use it!
Terima kasih!

@dadabit
Copy link

dadabit commented Apr 15, 2021

thank you! it is so useful , but my computer just say this is not standard.

@MightyPrince1
Copy link

There are some attributes that you have forgotten about like cursive(3), blinking(5), whatever 7 and 8 do(they do some colour swap stuff), crossed out(9) and line over(53) from what I can tell.

The numbers(let's just call them x) are referring to \e[x;30m

@mauro-balades
Copy link

awesome, really helped me

@RabaDabaDoba
Copy link
Author

RabaDabaDoba commented Nov 5, 2021

awesome, really helped me

Glad to hear!

@mauro-balades
Copy link

mauro-balades commented Nov 5, 2021

awesome, really helped me

Glad to hear!

Btw, white is actualy light gray and black is dark gray

@LucasAlves011
Copy link

thank you

@little-smurf
Copy link

Hi, i found an error using ur code: ||fatal error: ANSI-color-codes.h: No such file or director

@321BadgerCode
Copy link

Hi, i found an error using ur code: ||fatal error: ANSI-color-codes.h: No such file or director

@little-smurf, you have to create a file with the content of all of the ANSI color codes. Name the file: "ANSI-color-codes.h". Then, you can include the header file into the script("testmain.c"), so that you can use the variables that were specified in the "ANSI-color-codes.h" script.

Copy link

ghost commented Feb 2, 2022

Love it, using it for a logger.

I didn't think 'reset' was a good name for the reset definition so I changed it.

#define reset "\e[0m" to #define CRESET "\e[0m".
CRESET isn't too clear, maybe something like RESET_COLOR would be best.

Anyways, thanks!

@RabaDabaDoba
Copy link
Author

@ALIAS-EMIL, thanks for the feedback! Not really updating this, but could add multiple definitions of reset.

Funny to see that people actually use this, was never my intention for this to be used by others.

@Alex-Stone-Github
Copy link

Dude, you are a legend!

@RabaDabaDoba
Copy link
Author

@Alex-Stone-Github no you are!

@spit4520
Copy link

spit4520 commented Apr 1, 2022

@RabaDabaDoba Does anyone know of a complete C def lib I can use? We recently built an RTOS from scratch at work (the chip shortage sucks, most chips we have to use don't literally have a working RTOS) and we are adding in VT/ANSI support. Also there aren't like package managers really in C, so any advice on how to manage upstream changes would be cool 😎

@DavePvZ
Copy link

DavePvZ commented Jul 5, 2022

Thanks!
hug

@xtrm-en
Copy link

xtrm-en commented Jul 22, 2022

many thanks!

@vitortvale
Copy link

exactly what I needed , thanks!

@BhartiRajesh99
Copy link

Not working! Plz help

@RabaDabaDoba
Copy link
Author

Not working! Plz help

Well it does work, do you have it all in the correct folder? Or missing some library? Since that's like the only causes of it not working.

@MohamedASattar
Copy link

Really fascinated

@mauro-balades
Copy link

@BhartiRajesh99

Not working! Plz help

maybe instead of just saying "help me!", try to show us an error or what you expected to happen vs what actually showed in the terminal or something. Thanks

@FOSSBOSS
Copy link

LoL, I literally just wrote this. I see you found some over 100 I didn't think to look for, so thanks for that.
I like how you used defines, instead of function calls. A difference in my header, is I took all the defines and made an array. that way I can create random color effects, or functions for colors, by passing the array an index.
you might want to add:
#ifndef ANSI_color_codes_H
#define ANSI_color_codes_H
#endif

while its not a color code, there is also underscore, and double underscore at:
#define UNDERLINE "\033[0;52m"
#define UNDERLINE_2 "\033[0;21m"

@Siavash1291
Copy link

When I utilize this library, it functions properly in the VS Code console. However, when I execute the console application in Windows CMD, the boldness of the texts is not displayed. Only the colors and backgrounds are shown.

@Alilqq
Copy link

Alilqq commented Jul 10, 2023

Is there a way I can use a hex/rgb color code in ansi?

@Sh0g0-1758
Copy link

This is just what I needed. Thanks a lot.

@V1ach
Copy link

V1ach commented Nov 20, 2023

It doesn't work, help plz.
My output using this library looks like:

e[0;31m>> Select input:

>> 1 - random
>> 2 - manual
e[0m

e[0;31m appears instead of colored text. I think smth wrong with my console. I'm using Visual Studio 2019 with Windows 10. Tried to use this library on my another laptop, with the same config, but the same result. Help me plz :3

@mauro-balades
Copy link

ur terminal might just not support it

@RonaldoMiral
Copy link

Thanks a lot! It is working.😐

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