B Palette is a versatile tool for Blender users who work with color palettes. It allows seamless import and export of palettes in multiple formats. The addon supports importing GPL, ASE, ACO, PAL, CLR, CSV, CSS, and TXT files, enabling you to bring in color schemes from external tools like Adobe Photoshop, GIMP, and Procreate. You can also export palettes in the GPL format for use in other applications.
Location: File > Import/Export > B Palette
Importing Palettes:
-The palette will be imported and added to Blender's palette list.
Exporting Palettes:
A CSV (Comma-Separated Values) file can support various formats to describe colors. Supported structures include:
Hexadecimal Notation (with or without #
):
#FF5733, #C70039, #900C3F
FFC300, DAF7A6, 581845
RGB Values (0–255):
255, 87, 51
199, 0, 57
144, 12, 63
Mixed (HEX and RGB):
#FF5733
199, 0, 57
#DAF7A6
A CSS (Cascading Style Sheets) file can contain color codes in styles or inline formats. Supported formats include:
Hexadecimal Colors:
background-color: #FF5733;
color: #C70039;
RGB Colors:
border-color: rgb(255, 87, 51);
HSL Colors (Converted to RGB):
background: hsl(340, 100%, 50%);
/* this is a comment */
) and other non-color data are ignored.A TXT file supports flexible formats to store color codes. Supported structures include:
Hexadecimal Colors:
#FF5733
C70039
RGB Values:
255, 87, 51
199 0 57
HSL Values (Converted to RGB):
hsl(340, 100%, 50%)
Prefixed HEX Colors (FF
prefix):
FF0A5733
Mixed Formats:
#FF5733
255, 87, 51
hsl(340, 100%, 50%)
No changelog for this release.
This extension requests the following permission:
Requires access to directory with color palette files