Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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).
- Host: GitHub
- URL: https://github.com/robert-96/gimp-color-palettes
- Owner: Robert-96
- License: mit
- Created: 2020-10-07T21:58:53.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-17T22:33:12.000Z (16 days ago)
- Last Synced: 2025-01-17T23:26:43.878Z (16 days ago)
- Topics: aseprite, color-palettes, color-schemes, colors, drawpile, gimp, inkscape, krita, mypaint, palettes, rgb
- Language: HTML
- Homepage: https://robert-96.github.io/gimp-color-palettes/
- Size: 1.47 MB
- Stars: 33
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).