Add GRA color code

This commit is contained in:
Fuhrmann 2024-12-11 11:14:25 +01:00
parent 4a769a41a8
commit f9d165da67

View file

@ -782,5 +782,7 @@ def get_symbol_color(color_string):
return {
"CMYK": [100, 100, 100, 0, 100],
}
elif color_string == "GRA":
return {"CMYK": [10, 10, 10, 21, 100]}
else:
raise ValueError(f"Execution aborted: unknown color code {color_string}")