Mono - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Mono Color Palette

 

Description

Examples

Description

• 

The Mono plot palette is a sorted selection of shades of gray. It is designed for coloring filled areas. There are nine main shades in the palette as well as seven more named shades.

ColorTools:-DisplayPalette("Mono",noextend);

1. BlackishGray

2. WhitishGray

3. NeutralGray

4. DarkGray









5. LightGray

6. LightNeutralGray

7. VeryDarkGray

8. VeryLightGray









9. DarkNeutralGray

10. Gray14

11. Gray71

12. Gray27









13. Gray56

14. Gray20

15. Gray64

16. Gray31









 

Examples

You can reference colors in the palette by name or number in most commands that understand color names.

plotx,x3,x=1..1,color=Mono BlackishGray,Mono 3

CColorTools:-ColorMono 10

CRGB : 0.141 0.141 0.141

(1)

You can make Mono the default palette in plots using setcolors

plots:-setcolorsMono:

You can programmatically access the colors using ColorTools commands

PColorTools:-GetPaletteMono

PPalette Mono:BlackishGrayWhitishGrayNeutralGrayDarkGrayLightGrayLightNeutralGrayVeryDarkGrayVeryLightGrayDarkNeutralGrayGray14Gray71Gray27Gray56Gray20Gray64Gray31

(2)

P1

RGB : Blackish Gray

(3)

ColorTools algorithms will automatically generate new colors beyond the main 16 colors:

P20

RGB : 0.072 0.226 0.249

(4)

nnumcolorsP

n16

(5)

plotseqsinx+iπn,i=1..n,x=0..2π,axes=boxed,color=:-GetColorsP1..n,legend=:-GetColorNamesP1..n,numpoints=25,style=point,symbol=solidcircle

The Mono palette is designed for filled areas, but the Lookup command can provide slightly altered shades of its colors for use in coloring points or lines.

LookupP,1,shade=line

RGB : 0.0211 0.0253 0.0261

(6)

LookupP,1,shade=point

RGB : 0 0 0

(7)

See Also

ColorTools

ColorTools[DisplayPalette]

ColorTools[Palette]

ColorTools[Palettes][Lookup]

plots[setcolors]