Coverage for /usr/local/lib/python3.11/dist-packages/grond/plot/common.py: 50%

4 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2024-11-27 15:15 +0000

1# https://pyrocko.org/grond - GPLv3 

2# 

3# The Grond Developers, 21st Century 

4 

5def light(color, factor=0.5): 

6 return tuple(1-(1-c)*factor for c in color) 

7 

8 

9def dark(color, factor=0.5): 

10 return tuple(c*factor for c in color)