Introduction

In Pamela there are several shapes that accept colors for configuring things, like fill or borderColor and so on. Internally, they are handled as strings. What values can we use?

Known colors

One way of defining a color is using its known name. An example is 'black' or 'orange'. A complete list can be found at: https://www.w3schools.com/colors/colors_names.asp

Custom colors

https://www.geeksforgeeks.org/html-hex-color-codes/

Other custom colors can be defined using html color formatting. Colors are defined using rgb and hexadecimal:

'#FF00FF'

Each byte is written into hexadecimal.