138 lines
1.4 KiB
C
138 lines
1.4 KiB
C
#include "basic.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "draw.h"
|
|
|
|
void rainbow_8() {
|
|
color colors [] = {
|
|
RED,
|
|
L_RED,
|
|
L_YELLOW,
|
|
GREEN,
|
|
BLUE,
|
|
MAGENTA
|
|
};
|
|
draw(6, colors);
|
|
}
|
|
|
|
void aromantic_8() {
|
|
color colors [] = {
|
|
GREEN,
|
|
L_GREEN,
|
|
WHITE,
|
|
GRAY,
|
|
BLACK
|
|
};
|
|
draw(5, colors);
|
|
}
|
|
|
|
void aroace_8() {
|
|
color colors [] = {
|
|
YELLOW,
|
|
L_YELLOW,
|
|
WHITE,
|
|
L_CYAN,
|
|
BLUE
|
|
};
|
|
draw(5, colors);
|
|
}
|
|
|
|
void asexual_8() {
|
|
color colors [] = {
|
|
BLACK,
|
|
GRAY,
|
|
WHITE,
|
|
MAGENTA
|
|
};
|
|
draw(4, colors);
|
|
}
|
|
|
|
void bigender_8() {
|
|
color colors [] = {
|
|
L_RED,
|
|
L_YELLOW,
|
|
WHITE,
|
|
MAGENTA,
|
|
L_BLUE
|
|
};
|
|
draw(5, colors);
|
|
}
|
|
|
|
void bisexual_8() {
|
|
color colors [] = {
|
|
RED,
|
|
RED,
|
|
MAGENTA,
|
|
BLUE,
|
|
BLUE
|
|
};
|
|
draw(5, colors);
|
|
}
|
|
|
|
void gay_8() {
|
|
color colors [] = {
|
|
CYAN,
|
|
L_CYAN,
|
|
WHITE,
|
|
L_BLUE,
|
|
BLUE
|
|
};
|
|
draw(5, colors);
|
|
}
|
|
|
|
void genderfluid_8() {
|
|
color colors [] = {
|
|
L_RED,
|
|
WHITE,
|
|
MAGENTA,
|
|
BLACK,
|
|
BLUE
|
|
};
|
|
draw(5, colors);
|
|
}
|
|
|
|
void lesbian_8() {
|
|
color colors [] = {
|
|
RED,
|
|
L_RED,
|
|
WHITE,
|
|
L_MAGENTA,
|
|
MAGENTA
|
|
};
|
|
draw(5, colors);
|
|
}
|
|
|
|
void nonbinary_8() {
|
|
color colors [] = {
|
|
L_YELLOW,
|
|
WHITE,
|
|
MAGENTA,
|
|
BLACK
|
|
};
|
|
draw(4, colors);
|
|
}
|
|
|
|
void pansexual_8() {
|
|
color colors [] = {
|
|
MAGENTA,
|
|
MAGENTA,
|
|
L_YELLOW,
|
|
L_YELLOW,
|
|
CYAN,
|
|
CYAN
|
|
};
|
|
draw(6, colors);
|
|
}
|
|
|
|
void transgender_8() {
|
|
color colors [] = {
|
|
L_CYAN,
|
|
L_MAGENTA,
|
|
WHITE,
|
|
L_MAGENTA,
|
|
L_CYAN
|
|
};
|
|
draw(5, colors);
|
|
}
|
|
|