Skip to content

Commit 67f3d0e

Browse files
author
Alexander Wilms
authored
Use orange text for percentages between 70 % and 90 %
Yellow is too hard to read
1 parent aa521b3 commit 67f3d0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/update.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def format_value(percent):
148148
if percent < 0.7:
149149
return "$\\color{red}{\\textsf{" + str(round(percent * 100, 1)) + " \\%" + "}}$"
150150
elif percent < 0.9:
151-
return "$\\color{yellow}{\\textsf{" + str(round(percent * 100, 1)) + " \\%" + "}}$"
151+
return "$\\color{orange}{\\textsf{" + str(round(percent * 100, 1)) + " \\%" + "}}$"
152152
else:
153153
return "$\\color{green}{\\textsf{" + str(round(percent * 100, 1)) + " \\%" + "}}$"
154154

0 commit comments

Comments
 (0)