A Python package for working with the Tailwind CSS color palette.
Project description
Python Tailwind Palette
Introduction
Tailwind Palette is a Python package designed for working with the Tailwind CSS color palette. This library facilitates easy access and manipulation of Tailwind CSS colors in Python. It's an extension of the python-tailwind-colors library, originally developed by dostuffthatmatters, enhanced to provide additional functionality and improved user experience.
View the Tailwind CSS color palette here
Installation
To install Tailwind Palette, run:
pip install tailwind-palette
Usage
Import Statement
Use the following import statement to access the TailwindPalette class.
from tailwind_palette import TailwindPalette as tp
Accessing Colors
You can access color shades directly or use the '.get()' method.
Direct Access:
slate_100 = tp.SLATE.shade_100
print(f"Slate 100 Hex: {slate_100.hex}, RGB: {slate_100.rgb}")
Using '.get()' Method:
pink_500 = tp.get("pink-500")
print(f"Pink 500 Hex: {pink_500.hex}, RGB: {pink_500.rgb}")
Overriding Colors
You can override color shades using hex or RGB values.
Using Hex Value:
tp.SLATE.override_shade('shade_100', value="#abcdef")
Using RGB Value:
tp.SLATE.override_shade('shade_200', value=(12, 34, 56))
Features
- Easy access to all Tailwind CSS color shades.
- Ability to override specific color shades.
- Hex and RGB color format support.
Dependencies
Tailwind Palette requires the following dependencies:
- Python 3.x
Troubleshooting
If you encounter any issues, please refer to the GitHub Issues page for common problems and solutions.
License
This project is licensed under the MIT License. See the LICENSE file for more details.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tailwind-palette-1.0.5.tar.gz.
File metadata
- Download URL: tailwind-palette-1.0.5.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55939a176ff3dab6412d92cfdf76b2983829d9b95b11477806527d7d3be55d65
|
|
| MD5 |
c8d737ae5e088b141f95052dae6ac825
|
|
| BLAKE2b-256 |
53ec67252fb75f4eacc613521282947bad576bd98179723de189863572c63c8a
|
File details
Details for the file tailwind_palette-1.0.5-py3-none-any.whl.
File metadata
- Download URL: tailwind_palette-1.0.5-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f35a68734986ae78752942fe39b6cc197670f0f9c00b192fb95f53a92355e96
|
|
| MD5 |
23afbe02208ef86a7703acea2d2c344a
|
|
| BLAKE2b-256 |
c5143f050136d488fd57a2f24a53d16a410645e5adf4ee4a7147e2de590651da
|