Palette Description
Great choice! Here’s the updated “Ice Age Motif” palette with the “Frosty Mango Orange” changed back to “Rich Mango Orange”:
json
{
"palette_name": "Ice Age Motif",
"colors": [
{
"name": "Frozen Earth Brown",
"hex_code": "
#7B5B3A
"
},
{
"name": "Cherimoya Snow White",
"hex_code": "
#F4E1C1
"
},
{
"name": "Icy Squash Yellow",
"hex_code": "
#E0B300
"
},
{
"name": "Rich Mango Orange",
"hex_code": "
#FF5722
"
},
{
"name": "Mossy Avocado Green",
"hex_code": "
#4C8C2A
"
}
]
}
Saving the Palette in GIMP’s .gpl Format
To create a .gpl
file for use in GIMP, you can follow these steps:
-
Open a Text Editor: Use any text editor like Notepad (Windows), TextEdit (Mac), or any code editor.
-
Format the .gpl File: Copy and paste the following format into your text editor, replacing the placeholders with the color data from the palette above:
GIMP Palette Name: Ice Age Motif Columns: 5 # 123 91 58 Frozen Earth Brown 244 225 193 Cherimoya Snow White 224 179 0 Icy Squash Yellow 255 87 34 Rich Mango Orange 76 140 42 Mossy Avocado Green
Note: The RGB values should be converted from hex to decimal. For example,
#7B5B3A
becomes123 91 58
(R G B). -
Save the File: Save the file with a
.gpl
extension (e.g.,ice_age_motif.gpl
). -
Import into GIMP:
- Open GIMP.
- Go to
Windows
>Dockable Dialogs
>Palettes
. - In the Palettes dialog, click on the menu button (three horizontal lines) and select
Import Palette
. - Choose the
.gpl
file you just created.
Your color palette “Ice Age Motif” will now be available in GIMP!
If you have any further questions or need assistance, feel free to ask!