Skip to main content

Provides an easy way to print full 24bit colors in terminals that support it.

Project description

__FULLCOLOR__

fullcolor is a simple python module meant to make it easy to print text in full 24bit colouring.

Instead of the usual 256 different colors, fullcolor enables users to use the full 16.7 million color gammut.
Support for this does depend on the terminal, but if unsupported, it should fallback to 256 colors with no user intervention.

Currently it provides the ability to:
* set the foreground or background to any color that can be expressed as a 6 digit hex code or (R, G, B) tuple
* convert between RGB, HEX (supports both 3 and 6 digit hex codes), and terminal color encodings (though this should rarely ever be used).
* allows users to extend color modes to print in (modifying the Tmode enum will automatically update the Color classes slots)
* reset terminal color
* has a default set of colors for simple use cases


USAGE:

To import base color class:
```from fullcolor.fullcolor import Color```

To import common colors:
```from fullcolor.fullcolor import CommonColors```

Sample print statements:
```
from fullcolor.fullcolor import Color, CommonColors as cc

# print green background, red foreground, then reset terminal colors
print(cc.GREEN.bg + cc.RED.fg + 'Christmas tree.' + cc.RT)

# create custom colors and use them
custom1 = Color('561f0a')
custom2 = Color((100, 240, 100))
custom3 = Color('#a02')
print(custom1.fg + custom2.bg + 'This is gonna be ' + custom3.bg + 'ugly.' + custom1.rt)
```






Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fullcolor-0.2.1.tar.gz (15.2 kB view hashes)

Uploaded Source

Built Distribution

fullcolor-0.2.1-py2.py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page