colorim 0.2.2__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {colorim-0.2.2 → colorim-0.2.4}/PKG-INFO +5 -1
- {colorim-0.2.2 → colorim-0.2.4}/README.md +5 -1
- {colorim-0.2.2 → colorim-0.2.4}/colorim/__init__.py +1 -1
- {colorim-0.2.2 → colorim-0.2.4}/colorim/colors.py +10 -0
- {colorim-0.2.2 → colorim-0.2.4}/colorim/hextorgb.py +1 -2
- {colorim-0.2.2 → colorim-0.2.4}/colorim.egg-info/PKG-INFO +5 -1
- {colorim-0.2.2 → colorim-0.2.4}/pyproject.toml +1 -1
- {colorim-0.2.2 → colorim-0.2.4}/colorim/hex_codes.py +0 -0
- {colorim-0.2.2 → colorim-0.2.4}/colorim/rgb.py +0 -0
- {colorim-0.2.2 → colorim-0.2.4}/colorim.egg-info/SOURCES.txt +0 -0
- {colorim-0.2.2 → colorim-0.2.4}/colorim.egg-info/dependency_links.txt +0 -0
- {colorim-0.2.2 → colorim-0.2.4}/colorim.egg-info/top_level.txt +0 -0
- {colorim-0.2.2 → colorim-0.2.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: colorim
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: A library based off Colorama/Rich with extra features like RGB and hex
|
|
5
5
|
Author: im-lemon
|
|
6
6
|
Requires-Python: >=3.8
|
|
@@ -24,3 +24,7 @@ Upcoming updates:
|
|
|
24
24
|
- Gradient (Lolcat) type text.
|
|
25
25
|
- More custom predefined colours.
|
|
26
26
|
- *And more!*
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
# !! DYNAMICBLOX DID NOT CONTRIBUTE !!
|
|
30
|
+
**IT IS A GLITCH.**
|
|
@@ -3,6 +3,8 @@ class Color:
|
|
|
3
3
|
GREEN_CODE = "\033[32;1m"
|
|
4
4
|
BLUE_CODE = "\033[34;1m"
|
|
5
5
|
PURPLE_CODE = "\033[38;2;179;0;254m"
|
|
6
|
+
CHROME_YELLOW_CODE = "\033[38;255;171;0"
|
|
7
|
+
DIAMOND_CODE = "\033[38;204;202;251"
|
|
6
8
|
CYAN_CODE = "\033[36;1m"
|
|
7
9
|
YELLOW_CODE = "\033[0;93m"
|
|
8
10
|
LIGHT_YELLOW_CODE = "\033[1;93m"
|
|
@@ -41,4 +43,12 @@ class Color:
|
|
|
41
43
|
@classmethod
|
|
42
44
|
def light_yellow(cls, text):
|
|
43
45
|
output=cls.LIGHT_YELLOW_CODE+text+cls.END
|
|
46
|
+
return output
|
|
47
|
+
@classmethod
|
|
48
|
+
def chrome_yellow(cls, text):
|
|
49
|
+
output=cls.CHROME_YELLOW_CODE+text+cls.END
|
|
50
|
+
return output
|
|
51
|
+
@classmethod
|
|
52
|
+
def diamond(cls, text):
|
|
53
|
+
output=cls.DIAMOND_CODE+text+cls.END
|
|
44
54
|
return output
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: colorim
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: A library based off Colorama/Rich with extra features like RGB and hex
|
|
5
5
|
Author: im-lemon
|
|
6
6
|
Requires-Python: >=3.8
|
|
@@ -24,3 +24,7 @@ Upcoming updates:
|
|
|
24
24
|
- Gradient (Lolcat) type text.
|
|
25
25
|
- More custom predefined colours.
|
|
26
26
|
- *And more!*
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
# !! DYNAMICBLOX DID NOT CONTRIBUTE !!
|
|
30
|
+
**IT IS A GLITCH.**
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|