diff options
author | Brett Weiland <brett_weiland@bpcspace.com> | 2020-11-02 03:50:59 -0600 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcspace.com> | 2020-11-02 03:50:59 -0600 |
commit | c6413e5c0d2f04232e37391c8b5b62277562d065 (patch) | |
tree | 35f90befba67f14cfad6d9d864ef2bc32ae42a58 /color_test.py | |
parent | 22ca63bf3d3ed4ec7a09e4850656ec174feca5b6 (diff) |
deleted: color_test.py
modified: post_bot.py
new file: push_script.sh
deleted: test_page
Diffstat (limited to 'color_test.py')
-rwxr-xr-x | color_test.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/color_test.py b/color_test.py deleted file mode 100755 index 288707a..0000000 --- a/color_test.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env python3 - -color = 0x0000ff -def rainbow_gen(color): - if (color & 0x0000ff == 0xff) and (color ^ 0xff0000 == 0xff) and (color ^ 0x00ff00 < 0xff): - color += 0x100 - color -= 1 - print("test") - - return color - -while True: - color = rainbow_gen(color) - print(hex(color)) - |