Skip to content

Commit ee4f5f9

Browse files
authored
Merge pull request #1 from Alexander-Wilms/patch-1
Use orange text for percentages between 70 % and 90 %
2 parents aa521b3 + 67f3d0e commit ee4f5f9

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)