Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 93bb743

Browse files
author
DirectiveAthena
committed
Change: v3.0.6 Text
1 parent e5f4fbc commit 93bb743

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# - Athena Color Package - v3.0.5
1+
# - Athena Color Package - v3.0.6
22
<img height="128" src="https://github.com/DirectiveAthena/VSC-AthenaColor/blob/master/Resources/AthenaColor.png?raw=true" width="128"/>
33

44
Python Package used to print rgb colors to the console
@@ -11,7 +11,8 @@ Python Package used to print rgb colors to the console
1111
- Custom rgb class with full support for math operators
1212
- All basic and extended web colors are available as the default predefined Fore and Back colors.
1313
- Access to the full rgb spectrum to be printed to the console
14-
14+
- Callable Styling (documentation under development)
15+
1516
---
1617

1718
## Usage

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setuptools.setup(
1616
name="AthenaColor",
17-
version="3.0.5",
17+
version="3.0.6",
1818
author="Andreas Sas",
1919
author_email="",
2020
description="Python Package used to print rgb colors to the console",

src/AthenaColor/Styling/Callable/MakeUp.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,6 @@ def SuperScript (*obj) -> str: return ''.join([f'{esc}[73{end}',
7070
def SubScript (*obj) -> str: return ''.join([f'{esc}[74{end}',*[o+ f'{esc}[74{end}' for o in obj],f'{esc}[75{end}' ])
7171
def NoScript (*obj) -> str: return ''.join([f'{esc}[75{end}',*[o+ f'{esc}[75{end}' for o in obj],f'' ])
7272

73-
# ? 76 - 89
74-
75-
# 90 - 97 see Basic
76-
# 100 - 107 see Basic
77-
7873
class Basic:
7974
class Fore:
8075
def Black (*obj) -> str: return ''.join([f"{esc}[30m", *[o+f"{esc}[30m" for o in obj], f'{esc}[39m'])

0 commit comments

Comments
 (0)