Metadata-Version: 2.4
Name: easycolor-termux
Version: 0.1.0
Summary: Terminal text coloring library
Author-email: Orxan <turkishorxan@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# easycolor-termux

A super practical and lightweight library to print colored and styled text in the terminal with a single line of code.

## Installation

```bash
pip install easycolor-termux

Quick Start

import easycolor

easycolor.green("Hello World!")
easycolor.bright_red("An error occurred!")
easycolor.bg_blue("Text with blue background")


User Guide & All Functions
​Here is the complete list of all functions you can use with easycolor.
​1. Standard Text Colors
easycolor.black("Text")
easycolor.red("Text")
easycolor.green("Text")
easycolor.yellow("Text")
easycolor.blue("Text")
easycolor.purple("Text")
easycolor.cyan("Text")
easycolor.white("Text")

2. Bright Text Colors
easycolor.bright_black("Text")
easycolor.bright_red("Text")
easycolor.bright_green("Text")
easycolor.bright_yellow("Text")
easycolor.bright_blue("Text")
easycolor.bright_purple("Text")
easycolor.bright_cyan("Text")
easycolor.bright_white("Text")

3. Background Colors
easycolor.bg_black("Text")
easycolor.bg_red("Text")
easycolor.bg_green("Text")
easycolor.bg_yellow("Text")
easycolor.bg_blue("Text")
easycolor.bg_purple("Text")
easycolor.bg_cyan("Text")
easycolor.bg_white("Text")

4. Bright Background Colors
easycolor.bg_bright_black("Text")
easycolor.bg_bright_red("Text")
easycolor.bg_bright_green("Text")
easycolor.bg_bright_yellow("Text")
easycolor.bg_bright_blue("Text")
easycolor.bg_bright_purple("Text")
easycolor.bg_bright_cyan("Text")
easycolor.bg_bright_white("Text")

5. Text Styles
easycolor.bold("Text")
easycolor.dim("Text")
easycolor.italic("Text")
easycolor.underline("Text")
easycolor.blink("Text")
easycolor.strike("Text")

6. Ready-to-Use Log Combos
easycolor.success("Database connected successfully.")
easycolor.error("Invalid password!")
easycolor.warning("Disk space is low.")
easycolor.info("System updated.")
easycolor.alert("CRITICAL SECURITY ALERT!")


