KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
pencils
★ 15
Open GitHub ↗
Collection of color palettes for Python
Download README (.md)
Explore Similar Repositories
stm32-crc32-calculator
:
STM32 CRC32 software calculation utility
DistilProtBert
:
DistilProtBert implementation, a distilled version of ProtBert model.
profet
:
No description available.
vmu-tools
:
A set of tools to modify and read VMU files and filetypes
moon-case
:
Simple Whatsapp - MultiAuth
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
pencils
?
Download (.md)
# pencils Pancils is a Python library with a colletion of color palettes. Currently available palettes: + Everything from [flatuicolors.com](https://flatuicolors.com/) + Most of the palettes from [materialui.co](https://materialui.co/) + [Tailwind](https://tailwindcss.com/) color palette. + [Bootstrap](https://getbootstrap.com/) color palette. + CSS (HTML) color names. Features: + A lot of colors from manually picked palettes. + 100% type safe. + Best integration with IDEs, autocomplete all the way down. + Includes multiple representations (HEX, [RGB](https://en.wikipedia.org/wiki/RGB_color_model), [HSL](https://en.wikipedia.org/wiki/HSL_and_HSV)) for each color. + Zero-dependency. Installatiion: ```bash python3 -m pip install pencils ``` ## Usage Get the hex representation of "Sunflower" color from [Dutch Palette](https://flatuicolors.com/palette/nl) of [Flat UI Colors](https://flatuicolors.com/): ```python import pencils pencils.NLPalette.colors.sunflower.value.hex # 'FFC312' ```  That's a lot of attributes and each one of them has a meaning: 1. `NLPalette` is an instance of the `pencils.Palette` class which holds information about palette name, author, source URL, and even emojis associated with the palette. 1. `colors` attribute is an [enum](https://docs.python.org/3/library/enum.html), a subclass of `pencils.Colors`. 1. `sunflower` is the color ID. 1. `value` is used to get the value of the enum. The value is an instance of `pencils.Color` class which contains operations on colors. 1. `hex` is a lowercase hex representaion of the color without `#`. Make the color darker: ```python color = pencils.NLPalette.colors.sunflower.value.hsl color.lightness = .2 color.hex # '664c00' ```  Get random color from a random palette: ```python pencils.random_palette().random_color() # Color(name='Unmellow Yellow', hex='fffa65') ``` 