corrected 8-color flag colors
This commit is contained in:
parent
314cc28fa3
commit
766b07c1f4
1 changed files with 7 additions and 5 deletions
|
@ -6,13 +6,15 @@ use crate::{
|
||||||
|
|
||||||
pub fn gilbert_baker() -> Colors {
|
pub fn gilbert_baker() -> Colors {
|
||||||
let pink = rgb(0xFF69B4); // sex
|
let pink = rgb(0xFF69B4); // sex
|
||||||
|
let red = rgb(0xFF0000); // life
|
||||||
|
let orange = rgb(0xFF8F00); // healing
|
||||||
|
let yellow = rgb(0xFFFF00); // sunlight
|
||||||
|
let green = rgb(0x008F00); // nature
|
||||||
let cyan = rgb(0x00C0C0); // magic
|
let cyan = rgb(0x00C0C0); // magic
|
||||||
|
let indigo = rgb(0x3E0099); // serenity
|
||||||
|
let purple = rgb(0x8F008F); // spirit
|
||||||
|
|
||||||
let mut output = flag::pride();
|
vec![pink, red, orange, yellow, green, cyan, indigo, purple]
|
||||||
output.insert(0, pink);
|
|
||||||
output.insert(5, cyan);
|
|
||||||
|
|
||||||
output
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn philadelphia() -> Colors {
|
pub fn philadelphia() -> Colors {
|
||||||
|
|
Loading…
Reference in a new issue