Skip to main content

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

tailwind-palette-1.0.5.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

tailwind_palette-1.0.5-py3-none-any.whl (8.5 kB view hashes)

Uploaded 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