Skip to content

Commit 9adc9c7

Browse files
committed
Bump version
1 parent eb7e4c5 commit 9adc9c7

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# We love colors!
2+
23
This library provides an easy way to generate [*color palettes*](https://www.etymonline.com/search?q=Palette):
34

45
> In computer graphics, a palette is a finite set of colors.
@@ -10,28 +11,28 @@ This library provides an easy way to generate [*color palettes*](https://www.ety
1011
> [Adobe Illustrator](https://helpx.adobe.com/illustrator/using/using-creating-swatches.html)
1112
1213
.. featuring the following (proprietary) color spaces:
14+
1315
- [PANTONE®](https://www.pantone.com)
1416
- [RAL®](https://www.ral-farben.de)
1517
- [Dulux®](https://www.dulux.com.au)
1618
- [Copic®](https://www.copicmarker.com)
1719
- [Prismacolor®](https://www.prismacolor.com)
1820

1921
For now, `we-love-colors` creates master palettes for use in
22+
2023
- [Scribus](https://www.scribus.net) (XML)
2124
- [GIMP](https://www.gimp.org) and [Inkscape](https://inkscape.org) (GPL)
2225
- [AutoCAD](https://www.autodesk.com/products/autocad) (ACB)
2326
- [LibreOffice](https://www.libreoffice.org) (SOC)
2427

28+
2529
## Getting started
26-
Depending on your setup you might prefer a ..
2730

28-
### Local installation via `virtualenv`
29-
Running `setup.sh` will install all dependencies inside a virtual environment, ready for action.
31+
Running `setup.sh` will install all dependencies inside a virtual environment, ready for action. Have a look first so you know what's going on ;)
3032

31-
### Global installation via `requirements.txt`
32-
It's as easy as `pip install -r requirements.txt`, but you might want to make sure that Python v3 is installed on your system.
3333

3434
## Usage
35+
3536
Fetching color sets and processing them is really straightforward - for everything else, there's `--help`:
3637

3738
```bash
@@ -57,7 +58,8 @@ $ colors fetch --all && colors process
5758
$ colors fetch copic dulux && colors process copic dulux
5859
```
5960

60-
### FAQ
61+
## FAQ
62+
6163
**Q: But where do all those files go?**
6264
**A:** That depends, ..
6365
- .. `.xml` files may be loaded individually with `Edit - Colours & Fills - Solid Colours - Import` (Scribus)
@@ -72,13 +74,16 @@ $ colors fetch copic dulux && colors process copic dulux
7274

7375

7476
## Color samples
77+
7578
If you are looking for a quick way to browse PANTONE® colors, check out the [Pantone Finder](https://github.com/picorana/Pantone_finder) package or [visit their website](https://picorana.github.io/Pantone_finder) to get started.
7679

7780
For all included colors, there are preview files, to be found in the `examples` folder: Open up `index.html`, generated with `examples.py` (for its PHP version, just `php -S localhost:8000`).
7881

7982
When clicking a color tile, its hex value is copied to your clipboard - brought to you by [clipboard.js](https://github.com/zenorocha/clipboard.js).
8083

84+
8185
## Copyright
86+
8287
Whenever mentioned throughout this project, PANTONE® and related trademarks are the property of [Pantone LLC](https://www.pantone.com), a division of [X-Rite](https://www.xrite.com), a [Danaher](https://www.danaher.com) company.
8388

8489
The same applies to ..
@@ -89,7 +94,9 @@ The same applies to ..
8994

9095
We assume neither ownership nor intellectual property of any kind - color codes (and names), sRGB and/or hexadecimal values are publically available on (one of) their respective websites.
9196

97+
9298
## Similar projects
99+
93100
- For Scribus, there's also the (currently unmaintained) package [`SwatchBooker`](http://www.selapa.net/swatchbooker)
94101

95102

requirements.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

we_love_colors/__init__.py

Whitespace-only changes.

we_love_colors/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030

3131
@click.group(context_settings=CONTEXT_SETTINGS)
32-
@click.version_option('1.0.0-beta.2', '-v', '--version')
32+
@click.version_option('1.1.0', '-v', '--version')
3333
def cli():
3434
pass
3535

we_love_colors/helpers/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)