├── README.md ├── blue.go ├── pink.pogo ├── purple.css └── shot.png /README.md: -------------------------------------------------------------------------------- 1 | # Bisexual 2 | 3 | Just in case github changes any of the colours, 4 | this is what it's supposed to look like: 5 | 6 | ![](shot.png) 7 | 8 | ## Similar projects 9 | 10 | This repository was inspired by various other pride flags ❤ 11 | 12 | - https://github.com/spacekookie/gay 13 | - https://github.com/ticky/trans 14 | - https://github.com/alexwlchan/asexual 15 | - https://github.com/TartanLlama/non-binary 16 | -------------------------------------------------------------------------------- /blue.go: -------------------------------------------------------------------------------- 1 | fmt.Println("1") 2 | -------------------------------------------------------------------------------- /pink.pogo: -------------------------------------------------------------------------------- 1 | body = ["Pride"] 2 | -------------------------------------------------------------------------------- /purple.css: -------------------------------------------------------------------------------- 1 | body { left: 0 } 2 | -------------------------------------------------------------------------------- /shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbbischoff/bisexual/d74a5555d06a476153c9c1f5a3446914c27b08ed/shot.png --------------------------------------------------------------------------------