|
33 | 33 | ## Colors: for the color values below, you can either use
|
34 | 34 | ## - a Matplotlib color string, such as r, k, or b
|
35 | 35 | ## - an RGB tuple, such as (1.0, 0.5, 0.0)
|
36 |
| -## - a hex string, such as ff00ff |
| 36 | +## - a double-quoted hex string, such as "#ff00ff". |
| 37 | +## The unquoted string ff00ff is also supported for backward |
| 38 | +## compatibility, but is discouraged. |
37 | 39 | ## - a scalar grayscale intensity such as 0.75
|
38 | 40 | ## - a legal html color name, e.g., red, blue, darkslategray
|
39 | 41 | ##
|
| 42 | +## String values may optionally be enclosed in double quotes, which allows |
| 43 | +## using the comment character # in the string. |
| 44 | +## |
40 | 45 | ## Matplotlib configuration are currently divided into following parts:
|
41 | 46 | ## - BACKENDS
|
42 | 47 | ## - LINES
|
|
506 | 511 | ## ***************************************************************************
|
507 | 512 | ## * GRIDS *
|
508 | 513 | ## ***************************************************************************
|
509 |
| -#grid.color: b0b0b0 # grid color |
510 |
| -#grid.linestyle: - # solid |
511 |
| -#grid.linewidth: 0.8 # in points |
512 |
| -#grid.alpha: 1.0 # transparency, between 0.0 and 1.0 |
| 514 | +#grid.color: "#b0b0b0" # grid color |
| 515 | +#grid.linestyle: - # solid |
| 516 | +#grid.linewidth: 0.8 # in points |
| 517 | +#grid.alpha: 1.0 # transparency, between 0.0 and 1.0 |
513 | 518 |
|
514 | 519 |
|
515 | 520 | ## ***************************************************************************
|
|
0 commit comments