pride-c/basic.c

139 lines
1.4 KiB
C
Raw Normal View History

#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);
}
2024-03-23 09:16:45 -04:00
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);
}
2024-03-23 09:16:45 -04:00
void asexual_8() {
color colors [] = {
BLACK,
GRAY,
WHITE,
MAGENTA
};
draw(4, colors);
}
2024-03-22 22:24:41 -04:00
void bigender_8() {
color colors [] = {
L_RED,
L_YELLOW,
WHITE,
MAGENTA,
L_BLUE
};
draw(5, colors);
2024-03-22 22:24:41 -04:00
}
void bisexual_8() {
color colors [] = {
RED,
RED,
MAGENTA,
BLUE,
BLUE
};
draw(5, colors);
}
2024-03-21 18:18:14 -04:00
void gay_8() {
color colors [] = {
CYAN,
L_CYAN,
WHITE,
L_BLUE,
BLUE
};
draw(5, colors);
2024-03-21 18:18:14 -04:00
}
2024-03-22 22:24:41 -04:00
void genderfluid_8() {
color colors [] = {
L_RED,
WHITE,
MAGENTA,
BLACK,
BLUE
};
draw(5, colors);
2024-03-22 22:24:41 -04:00
}
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);
}