pride-c/full.c

105 lines
1.4 KiB
C
Raw Normal View History

#include "full.h"
#include <stdio.h>
#include "color.h"
void rainbow_256() {
printf(
COLOR(196) STRIPE // red
COLOR(208) STRIPE // orange
COLOR(220) STRIPE // yellow
COLOR(28) STRIPE // green
COLOR(21) STRIPE // blue
COLOR(90) STRIPE // purple
);
}
void aroace_256() {
printf(
COLOR(172) STRIPE
COLOR(184) STRIPE
COLOR(255) STRIPE
COLOR(38) STRIPE
COLOR(17) STRIPE
);
}
2024-03-22 22:24:41 -04:00
void bigender_256() {
printf(
COLOR(204) STRIPE
COLOR(227) STRIPE
COLOR(255) STRIPE
COLOR(134) STRIPE
COLOR(69) STRIPE
);
}
void bisexual_256() {
printf(
COLOR(161) STRIPE STRIPE
COLOR(91) STRIPE
COLOR(21) STRIPE STRIPE
);
}
2024-03-21 18:18:14 -04:00
void gay_256() {
printf(
COLOR(29) STRIPE
COLOR(49) STRIPE
COLOR(123) STRIPE
COLOR(255) STRIPE
COLOR(75) STRIPE
COLOR(63) STRIPE
COLOR(56) STRIPE
);
}
2024-03-22 22:24:41 -04:00
void genderfluid_256() {
printf(
COLOR(204) STRIPE
COLOR(255) STRIPE
COLOR(164) STRIPE
COLOR(16) STRIPE
COLOR(63) STRIPE
);
}
void lesbian_256() {
printf(
COLOR(202) STRIPE
COLOR(209) STRIPE
COLOR(255) STRIPE
COLOR(134) STRIPE
COLOR(161) STRIPE
);
}
void nonbinary_256() {
printf(
COLOR(226) STRIPE
COLOR(255) STRIPE
COLOR(134) STRIPE
COLOR(16) STRIPE
);
}
void pansexual_256() {
printf(
COLOR(161) STRIPE STRIPE
COLOR(220) STRIPE STRIPE
COLOR(45) STRIPE STRIPE
);
}
void transgender_256() {
printf(
COLOR(45) STRIPE
COLOR(117) STRIPE
COLOR(255) STRIPE
COLOR(117) STRIPE
COLOR(45) STRIPE
);
}