Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/robert-96/gimp-color-palettes

A collection of RGB color palettes for GIMP and Inkscape (but also Aseprite, Drawpile, Krita and MyPaint).
https://github.com/robert-96/gimp-color-palettes

aseprite color-palettes color-schemes colors drawpile gimp inkscape krita mypaint palettes rgb

Last synced: 7 days ago
JSON representation

A collection of RGB color palettes for GIMP and Inkscape (but also Aseprite, Drawpile, Krita and MyPaint).

Awesome Lists containing this project

README

        

# gimp-color-palettes

A collection of RGB color palettes for [GIMP](https://www.gimp.org/) and [Inkscape](https://inkscape.org/) (but also [Aseprite](https://www.aseprite.org/), [Drawpile](https://drawpile.net/), [Krita](https://krita.org/) and [MyPaint](http://mypaint.org/)).

You can preview and download all these palettes [directly in the browser](https://robert-96.github.io/gimp-color-palettes/).

![Screenshot](/screenshots/screenshot.png)

## Table of Contents

* [GIMP's Palettes Format](#gimps-palettes-format)
* [Importing the palettes](#importing-the-palettes)
* [GIMP](#gimp)
* [Inkscape](#inkscape)
* [License](#license)

## GIMP's palettes format

GIMP palettes are stored using a special file format, in files with the extension `.gpl`.

Every palette must have the following structure:

```
GIMP Palette
Name:
Columns:
#
0 0 0 Black
255 255 255 White
```

* `GIMP Palette` - it must be the first line of the file.
* `Name: ` - sets the name of the color palette.
* `Columns: ` - is just an indication for displaying the palette inside GIMP.
* `# ` - comments must start with a `#`. All comments are ignored by GIMP.
* ` 0 0 0 Black` - RGB values for the color followed by the color name.

Here is an simple example:

```
GIMP Palette
Name: Example
Columns: 2
# A simple example
0 0 0 Black
255 255 255 White
255 0 0 Red
0 255 0 Green
0 0 255 Blue
```

> **Note**: The RGB values don't need to line up.

## Importing the palettes

### GIMP

Copy the `.gpl` file in the folder `/palettes`, which you create in the folder indicated at **Edit ‣ Preferences ‣ Folders ‣ Palettes**.

Restart GIMP to see the new palette in the list.

### Inkscape

Copy the `.gpl` file in the folder indicated at **Edit ‣ Preferences ‣ System: User palettes**.

Restart Inkscape to see the new palette in the list.

## License

This project is licensed under the [MIT License](./LICENSE).