This commit is contained in:
lee2sman 2021-02-14 20:55:26 -05:00
parent e4ff207bd8
commit c237937fe7
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ penColor('colorName')
```
penColor takes any color word: purple, grey, blue, etc. **The color name must be in quotes.**
Alternatively, a HTML color name, like #ff4d4d, may be specified in quotes. Example: ```penColor('$ff4d4d')```
Alternatively, a HTML color name, like #ff4d4d, may be specified in quotes. Example: ```penColor('#ff4d4d')```
Alternatively, a RGB color or RGBA color with transparency can be specified, with *color*. Example: ```penColor(color(255,0,255))```. See transparency example in examples section below.