pride-c/full.c

137 lines
1.8 KiB
C

#include "full.h"
#include <stdio.h>
#include "draw.h"
void rainbow_256() {
color colors [] = {
196, // red
208, // orange
220, // yellow
28, // green
21, // blue
90 // purple
};
draw(6, colors);
}
void aromantic_256() {
color colors [] = {
40, // green
83, // light green
255, // white
249, // gray
16 // black
};
draw(5, colors);
}
void aroace_256() {
color colors [] = {
172, // orange
184, // yellow
255, // white
38, // blue
17 // navy
};
draw(5, colors);
}
void asexual_256() {
color colors [] = {
16, // black
249, // gray
255, // white
90 // purple
};
draw(4, colors);
}
void bigender_256() {
color colors [] = {
204, // pink
227, // yellow
255, // white
134, // purple
69 // blue
};
draw(5, colors);
}
void bisexual_256() {
color colors [] = {
161, // magenta
161,
91, // purple
21,
21 // blue
};
draw(5, colors);
}
void gay_256() {
color colors [] = {
29,
49, // greens
123,
255, // white
75,
63, // blues
56
};
draw(7, colors);
}
void genderfluid_256() {
color colors[] = {
204, // pink
255, // white
164, // purple
16, // black
63, // blue
};
draw(5, colors);
}
void lesbian_256() {
color colors [] = {
202, // orange
209, // tangerine
255, // white
134, // pink
161 // magenta
};
draw(5, colors);
}
void nonbinary_256() {
color colors [] = {
226, // yellow
255, // white
134, // purple
16 // black
};
draw(4, colors);
}
void pansexual_256() {
color colors [] = {
161, 161, // magenta
220, 220, // yellow
45, 45 // cyan
};
draw(6, colors);
}
void transgender_256() {
color colors [] = {
45, // blue
213, // pink
255, // white
213, // pink
45 // blue
};
draw(5, colors);
}