Metadata-Version: 2.1
Name: paper-color
Version: 0.0.3
Summary: Get colors easily
Home-page: https://github.com/nlply
Author: Yang Liu
Author-email: lauyon@tju.edu.cn
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

1. Run the following script to install `paper_color`:
```bibtex
pip install paper-color
```
2. Get the color in your python program using `paper_color`:
```python
from paper_color import paper_color
paper_color.get_color()
# ['#3366FF', '#6AB520', '#0CA6FF', '#FFBF1E', '#FF4E2B']
```
3. You can also get a ladder color array:
```python
from paper_color import paper_color
colors = paper_color.ladder_colors(html_color='#31655f')
# ['#000000', '#040a09', '#091413', '#0e1e1c', '#132826', '#18322f', '#1d3c39', '#224642', '#27504c', '#2c5a55', '#31655f', '#45746f', '#5a837f', '#6e938f', '#83a29f', '#98b2af', '#acc1bf', '#c1d0cf', '#d5e0df', '#eaefef', '#ffffff']
```

<div style="background-color:#000000;width:20px;height:100px;float:left"></div>
<div style="background-color:#040a09;width:20px;height:100px;float:left"></div>
<div style="background-color:#091413;width:20px;height:100px;float:left"></div>
<div style="background-color:#0e1e1c;width:20px;height:100px;float:left"></div>
<div style="background-color:#132826;width:20px;height:100px;float:left"></div>
<div style="background-color:#18322f;width:20px;height:100px;float:left"></div>
<div style="background-color:#1d3c39;width:20px;height:100px;float:left"></div>
<div style="background-color:#224642;width:20px;height:100px;float:left"></div>
<div style="background-color:#27504c;width:20px;height:100px;float:left"></div>
<div style="background-color:#2c5a55;width:20px;height:100px;float:left"></div>
<div style="background-color:#31655f;width:20px;height:100px;float:left"></div>
<div style="background-color:#45746f;width:20px;height:100px;float:left"></div>
<div style="background-color:#5a837f;width:20px;height:100px;float:left"></div>
<div style="background-color:#6e938f;width:20px;height:100px;float:left"></div>
<div style="background-color:#83a29f;width:20px;height:100px;float:left"></div>
<div style="background-color:#98b2af;width:20px;height:100px;float:left"></div>
<div style="background-color:#acc1bf;width:20px;height:100px;float:left"></div>
<div style="background-color:#c1d0cf;width:20px;height:100px;float:left"></div>
<div style="background-color:#d5e0df;width:20px;height:100px;float:left"></div>
<div style="background-color:#eaefef;width:20px;height:100px;float:left"></div>
<div style="background-color:#ffffff;width:20px;height:100px;float:left"></div>


