pride-c/basic.c

94 lines
1,001 B
C
Raw Normal View History

#include "basic.h"
#include "draw.h"
void rainbow_8() {
2024-03-23 11:48:09 -04:00
const color colors [] = {
RED,
L_RED,
L_YELLOW,
GREEN,
BLUE,
MAGENTA
};
draw(6, colors);
}
void aroace_8() {
2024-03-23 11:48:09 -04:00
const color colors [] = {
YELLOW,
L_YELLOW,
WHITE,
L_CYAN,
BLUE
};
draw(5, colors);
}
void bisexual_8() {
2024-03-23 11:48:09 -04:00
const color colors [] = {
RED,
RED,
MAGENTA,
BLUE,
BLUE
};
draw(5, colors);
}
2024-03-21 18:18:14 -04:00
void gay_8() {
2024-03-23 11:48:09 -04:00
const color colors [] = {
CYAN,
L_CYAN,
WHITE,
L_BLUE,
BLUE
};
draw(5, colors);
2024-03-21 18:18:14 -04:00
}
void lesbian_8() {
2024-03-23 11:48:09 -04:00
const color colors [] = {
RED,
L_RED,
WHITE,
L_MAGENTA,
MAGENTA
};
draw(5, colors);
}
void nonbinary_8() {
2024-03-23 11:48:09 -04:00
const color colors [] = {
L_YELLOW,
WHITE,
MAGENTA,
BLACK
};
draw(4, colors);
}
void pansexual_8() {
2024-03-23 11:48:09 -04:00
const color colors [] = {
MAGENTA,
MAGENTA,
L_YELLOW,
L_YELLOW,
CYAN,
CYAN
};
draw(6, colors);
}
void transgender_8() {
2024-03-23 11:48:09 -04:00
const color colors [] = {
L_CYAN,
L_MAGENTA,
WHITE,
L_MAGENTA,
L_CYAN
};
draw(5, colors);
}