2024-03-21 17:01:09 -04:00
|
|
|
#include "full.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2024-03-22 23:52:46 -04:00
|
|
|
#include "draw.h"
|
2024-03-21 17:01:09 -04:00
|
|
|
|
|
|
|
void rainbow_256() {
|
2024-03-23 11:48:09 -04:00
|
|
|
const color colors [] = {
|
2024-03-22 23:52:46 -04:00
|
|
|
196, // red
|
|
|
|
208, // orange
|
|
|
|
220, // yellow
|
|
|
|
28, // green
|
|
|
|
21, // blue
|
|
|
|
90 // purple
|
|
|
|
};
|
|
|
|
draw(6, colors);
|
2024-03-21 17:01:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void aroace_256() {
|
2024-03-23 11:48:09 -04:00
|
|
|
const color colors [] = {
|
2024-03-22 23:52:46 -04:00
|
|
|
172, // orange
|
|
|
|
184, // yellow
|
|
|
|
255, // white
|
|
|
|
38, // blue
|
|
|
|
17 // navy
|
|
|
|
};
|
|
|
|
draw(5, colors);
|
2024-03-21 17:01:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void bisexual_256() {
|
2024-03-23 11:48:09 -04:00
|
|
|
const color colors [] = {
|
2024-03-22 23:52:46 -04:00
|
|
|
161, // magenta
|
|
|
|
161,
|
|
|
|
91, // purple
|
|
|
|
21,
|
|
|
|
21 // blue
|
|
|
|
};
|
|
|
|
draw(5, colors);
|
2024-03-21 17:01:09 -04:00
|
|
|
}
|
|
|
|
|
2024-03-21 18:18:14 -04:00
|
|
|
void gay_256() {
|
2024-03-23 11:48:09 -04:00
|
|
|
const color colors [] = {
|
2024-03-22 23:52:46 -04:00
|
|
|
29,
|
|
|
|
49, // greens
|
|
|
|
123,
|
|
|
|
255, // white
|
|
|
|
75,
|
|
|
|
63, // blues
|
|
|
|
56
|
|
|
|
};
|
|
|
|
draw(7, colors);
|
2024-03-21 18:18:14 -04:00
|
|
|
}
|
|
|
|
|
2024-03-21 17:01:09 -04:00
|
|
|
void lesbian_256() {
|
2024-03-23 11:48:09 -04:00
|
|
|
const color colors [] = {
|
2024-03-22 23:52:46 -04:00
|
|
|
202, // orange
|
|
|
|
209, // tangerine
|
|
|
|
255, // white
|
2024-03-23 11:48:09 -04:00
|
|
|
205, // pink
|
2024-03-22 23:52:46 -04:00
|
|
|
161 // magenta
|
|
|
|
};
|
|
|
|
draw(5, colors);
|
2024-03-21 17:01:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void nonbinary_256() {
|
2024-03-23 11:48:09 -04:00
|
|
|
const color colors [] = {
|
2024-03-22 23:52:46 -04:00
|
|
|
226, // yellow
|
|
|
|
255, // white
|
|
|
|
134, // purple
|
|
|
|
16 // black
|
|
|
|
};
|
|
|
|
draw(4, colors);
|
2024-03-21 17:01:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void pansexual_256() {
|
2024-03-23 11:48:09 -04:00
|
|
|
const color colors [] = {
|
2024-03-22 23:52:46 -04:00
|
|
|
161, 161, // magenta
|
|
|
|
220, 220, // yellow
|
|
|
|
45, 45 // cyan
|
|
|
|
};
|
|
|
|
draw(6, colors);
|
2024-03-21 17:01:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void transgender_256() {
|
2024-03-23 11:48:09 -04:00
|
|
|
const color colors [] = {
|
2024-03-22 23:52:46 -04:00
|
|
|
45, // blue
|
2024-03-23 00:28:54 -04:00
|
|
|
213, // pink
|
2024-03-22 23:52:46 -04:00
|
|
|
255, // white
|
2024-03-23 00:28:54 -04:00
|
|
|
213, // pink
|
2024-03-22 23:52:46 -04:00
|
|
|
45 // blue
|
|
|
|
};
|
|
|
|
draw(5, colors);
|
2024-03-21 17:01:09 -04:00
|
|
|
}
|
|
|
|
|