Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spacebagel/colorapp
https://github.com/spacebagel/colorapp
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/spacebagel/colorapp
- Owner: spacebagel
- Created: 2024-04-19T19:52:17.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-19T20:01:14.000Z (9 months ago)
- Last Synced: 2024-04-19T22:22:23.036Z (9 months ago)
- Language: C#
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```