adjust lesbian flag colors
This commit is contained in:
parent
67a1f48f2f
commit
0211e2df20
4 changed files with 19 additions and 19 deletions
16
basic.c
16
basic.c
|
@ -5,7 +5,7 @@
|
||||||
#include "draw.h"
|
#include "draw.h"
|
||||||
|
|
||||||
void rainbow_8() {
|
void rainbow_8() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
RED,
|
RED,
|
||||||
L_RED,
|
L_RED,
|
||||||
L_YELLOW,
|
L_YELLOW,
|
||||||
|
@ -17,7 +17,7 @@ void rainbow_8() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void aroace_8() {
|
void aroace_8() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
YELLOW,
|
YELLOW,
|
||||||
L_YELLOW,
|
L_YELLOW,
|
||||||
WHITE,
|
WHITE,
|
||||||
|
@ -28,7 +28,7 @@ void aroace_8() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void bisexual_8() {
|
void bisexual_8() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
RED,
|
RED,
|
||||||
RED,
|
RED,
|
||||||
MAGENTA,
|
MAGENTA,
|
||||||
|
@ -39,7 +39,7 @@ void bisexual_8() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void gay_8() {
|
void gay_8() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
CYAN,
|
CYAN,
|
||||||
L_CYAN,
|
L_CYAN,
|
||||||
WHITE,
|
WHITE,
|
||||||
|
@ -50,7 +50,7 @@ void gay_8() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void lesbian_8() {
|
void lesbian_8() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
RED,
|
RED,
|
||||||
L_RED,
|
L_RED,
|
||||||
WHITE,
|
WHITE,
|
||||||
|
@ -61,7 +61,7 @@ void lesbian_8() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void nonbinary_8() {
|
void nonbinary_8() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
L_YELLOW,
|
L_YELLOW,
|
||||||
WHITE,
|
WHITE,
|
||||||
MAGENTA,
|
MAGENTA,
|
||||||
|
@ -71,7 +71,7 @@ void nonbinary_8() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void pansexual_8() {
|
void pansexual_8() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
MAGENTA,
|
MAGENTA,
|
||||||
MAGENTA,
|
MAGENTA,
|
||||||
L_YELLOW,
|
L_YELLOW,
|
||||||
|
@ -83,7 +83,7 @@ void pansexual_8() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void transgender_8() {
|
void transgender_8() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
L_CYAN,
|
L_CYAN,
|
||||||
L_MAGENTA,
|
L_MAGENTA,
|
||||||
WHITE,
|
WHITE,
|
||||||
|
|
2
draw.c
2
draw.c
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
void draw(unsigned short int len, color colors []) {
|
void draw(const unsigned short int len, const color colors []) {
|
||||||
for(int i = 0; i < len; i++) {
|
for(int i = 0; i < len; i++) {
|
||||||
printf(ANSI "%dm" STRIPE, colors[i]);
|
printf(ANSI "%dm" STRIPE, colors[i]);
|
||||||
}
|
}
|
||||||
|
|
2
draw.h
2
draw.h
|
@ -6,5 +6,5 @@
|
||||||
|
|
||||||
typedef unsigned short int color;
|
typedef unsigned short int color;
|
||||||
|
|
||||||
void draw(unsigned short int len, color colors[]);
|
void draw(const unsigned short int len, const color colors[]);
|
||||||
|
|
||||||
|
|
18
full.c
18
full.c
|
@ -5,7 +5,7 @@
|
||||||
#include "draw.h"
|
#include "draw.h"
|
||||||
|
|
||||||
void rainbow_256() {
|
void rainbow_256() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
196, // red
|
196, // red
|
||||||
208, // orange
|
208, // orange
|
||||||
220, // yellow
|
220, // yellow
|
||||||
|
@ -17,7 +17,7 @@ void rainbow_256() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void aroace_256() {
|
void aroace_256() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
172, // orange
|
172, // orange
|
||||||
184, // yellow
|
184, // yellow
|
||||||
255, // white
|
255, // white
|
||||||
|
@ -28,7 +28,7 @@ void aroace_256() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void bisexual_256() {
|
void bisexual_256() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
161, // magenta
|
161, // magenta
|
||||||
161,
|
161,
|
||||||
91, // purple
|
91, // purple
|
||||||
|
@ -39,7 +39,7 @@ void bisexual_256() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void gay_256() {
|
void gay_256() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
29,
|
29,
|
||||||
49, // greens
|
49, // greens
|
||||||
123,
|
123,
|
||||||
|
@ -52,18 +52,18 @@ void gay_256() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void lesbian_256() {
|
void lesbian_256() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
202, // orange
|
202, // orange
|
||||||
209, // tangerine
|
209, // tangerine
|
||||||
255, // white
|
255, // white
|
||||||
134, // pink
|
205, // pink
|
||||||
161 // magenta
|
161 // magenta
|
||||||
};
|
};
|
||||||
draw(5, colors);
|
draw(5, colors);
|
||||||
}
|
}
|
||||||
|
|
||||||
void nonbinary_256() {
|
void nonbinary_256() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
226, // yellow
|
226, // yellow
|
||||||
255, // white
|
255, // white
|
||||||
134, // purple
|
134, // purple
|
||||||
|
@ -73,7 +73,7 @@ void nonbinary_256() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void pansexual_256() {
|
void pansexual_256() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
161, 161, // magenta
|
161, 161, // magenta
|
||||||
220, 220, // yellow
|
220, 220, // yellow
|
||||||
45, 45 // cyan
|
45, 45 // cyan
|
||||||
|
@ -82,7 +82,7 @@ void pansexual_256() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void transgender_256() {
|
void transgender_256() {
|
||||||
color colors [] = {
|
const color colors [] = {
|
||||||
45, // blue
|
45, // blue
|
||||||
213, // pink
|
213, // pink
|
||||||
255, // white
|
255, // white
|
||||||
|
|
Loading…
Reference in a new issue