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

Online Help

All Products    Maple    MapleSim


BeerSRM Color Palette

 

Description

Examples

Description

• 

The BeerSRM color palette is a sequential colormap based on the a Standard Reference Method used to measure the color of beer.

Examples

withColorTools:

The palette contains 40 colors named with beer styles whose range of SRM color will often contain that color.

DisplayPaletteBeerSRM,columns=10

1. Pale Lager

2. Pilsner

3. Blonde Ale

4. Maibock

5. Weissbier

6. Pale Ale

7. IPA

8. Saison

9. Bitter

10. ESB





















11. Biere de Garde

12. Scotch Light

13. Double IPA

14. Scotch Heavy

15. Amber Ale

16. Marzen

17. Dark Lager

18. Vienna Lager

19. Bock

20. Brown Ale





















21. Dunkel

22. Dunkelweizen

23. Weizenbock

24. Porter

25. Doppelbock

26. Irish Dry Stout

27. Oatmeal Stout

28. Eisbock

29. Schwarzbeir

30. Stout





















31. Milk Stout

32. Black IPA

33. Extra Stout

34. Tropical Stout

35. Baltic Porter

36. Sweet Stout

37. American Stout

38. Oyster Stout

39. Coffee Stout

40. Imperial Stout





















 

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

plotx,x3,x=1..1,color=BeerSRM 10,BeerSRM Baltic Porter

CColorBeerSRM 21

CRGB : 0.576 0.188 0.00392

(1)

You can programmatically access the colors using ColorTools commands

PGetPaletteBeerSRM:

P1

RGB : Pale Lager

(2)

SwatchesP,rows=5

BeerSRM is best used to construct as a sequential gradients from light to dark and from pale yellow to dark brown

ColorTools:-SwatchesP,rows=1,gap=0,borders=,scaling=unconstrained,size=600,100

The Blend command can be used to create a function to color arbitrary ranges. It can take the name of a palette to generate a colormap.

ColorMapColorTools:-BlendBeerSRM:

ColorMap0.35

RGB : 0.73 0.343 0.00699

(3)

And is particularly good when used to color surfaces. The colorscheme option of plots can take the names of palettes to generate gradients.

plot3dsinxcosy,x=32π..32π,y=32π..32π,colorscheme=BeerSRM

See Also

ColorTools[DisplayPalette]

ColorTools[Palette]

plots[setcolors]