Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/spacebagel/colorapp


https://github.com/spacebagel/colorapp

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Task #96 - Generate Complementary Color

![image](https://github.com/spacebagel/ColorApp/assets/165411846/4c313e97-65e3-4cd1-b2bf-b76efa8c8a93)

```
Because RGB (0-255, 0-255, 0-255)
complementary_color_r = 255 - color_r
complementary_color_g = 255 - color_g
complementary_color_b = 255 - color_b
```