colors
Set-up matplotlib environment.
GrayTones
¶
Bases: namedtuple('GrayTones', 'dark light')
Class for holding light and dark gray tone.
load_cmaps()
¶
Load and include custom colormaps to matplotlib.
Add sequential colormaps pastel5
, pastel6
, cbf4
, cbf5
, cbf8
,
and ufcd
as an corporate design. Except of ufcd
all palettes should be
'color-blind-friendly'.
Add continuous colormaps macaw, Turbo. The Copyright of those are given on top of the data.
See
Choosing an cmaps.
Source code in src/prettypyplot/colors.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
load_colors()
¶
Load and include custom colors to matplotlib.
Add colors of pastel5
which can be accessed via pplt:blue
, pplt:red
,
pplt:green
, pplt:orange
, pplt:lightblue
, pplt:gray
and
pplt:lightgray
. Further, the current colors will be added pplt:axes
,
pplt:text
, pplt:grid
.
See
Choosing an cmaps.
Source code in src/prettypyplot/colors.py
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
|
categorical_cmap(nc, nsc, *, cmap=None, return_colors=False)
¶
Generate categorical colors of given cmap.
Exract from a predefined colormap colors and generate for each the desired number of shades.
Parameters:
-
nc
(int
) –Number of colors
-
nsc
(int
) –Number of shades per colors
-
cmap
(`matplotlib.colors.Colormap` or str
, default:None
) –Matplotlib colormap to take colors from. The default is the active color cycle.
-
return_colors
(bool
, default:False
) –Return an array of rgb colors. Each color together with its shades are in an own row.
Returns:
-
scolors
(`matplotlib.colors.Colormap` or np.ndarray
) –Return discrete colormap. If return_colors, a 2d representation will be returned instead.
Source code in src/prettypyplot/colors.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
categorical_color(nsc, color, *, return_hex=False)
¶
Generate categorical shades of given colors.
Generate for each provided color the number of specified shades. The shaded colors are interpolated linearly in HSV colorspace. This function is based on following post: https://stackoverflow.com/a/47232942
Parameters:
-
nsc
(int
) –Number of shades per color.
-
color
(RGB color or matplotlib predefined color
) –Color used for generating shades.
-
return_hex
(bool
, default:False
) –Return colors in hex format instead of rgb.
Returns:
-
colors_rgb
(list of RGB colors
) –A list containing shaded colors. Where the list is sorted from the original color at the beginning to the most shaded one at the end. The default color encoding is rgb and hex if specified.
Source code in src/prettypyplot/colors.py
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
|
text_color(bgcolor, colors=('#000000', '#ffffff'))
¶
Select textcolor with maximal contrast on background.
All parameters needs to be colors accepted by matplotlib, see matplotlib.colors. The formulas are taken from W3C WCAG 2.1 (Web Content Accessibility Guidelines).
Parameters:
-
bgcolor
(matplotlib color
) –Background color to which the contrast is maximized.
-
colors
(list of matplotlib colors
, default:('#000000', '#ffffff')
) –Selection of textcolors to choose from.
Returns:
-
color
(matplotlib color
) –Color of colors which has the highest contrast on the given bgcolor.
Source code in src/prettypyplot/colors.py
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
|
is_greyshade(color)
¶
Check if color is a greyscale value including bw.
Source code in src/prettypyplot/colors.py
336 337 338 339 340 341 342 |
|