fix: light yellow text for Used by label, better contrast on dark cards
Browse files
app.py
CHANGED
|
@@ -259,7 +259,7 @@ def show_colors(orgs_str="Luminia"):
|
|
| 259 |
for cf, ct in used_unique:
|
| 260 |
spaces = color_to_spaces.get((cf, ct), [])
|
| 261 |
spaces_text = ", ".join(spaces) if spaces else ""
|
| 262 |
-
title = f"{cf}→{ct}<br><small style='font-size: 0.75rem; color: #
|
| 263 |
html += create_card_html(cf, ct, title, "", "Used")
|
| 264 |
html += '</div></details>'
|
| 265 |
|
|
|
|
| 259 |
for cf, ct in used_unique:
|
| 260 |
spaces = color_to_spaces.get((cf, ct), [])
|
| 261 |
spaces_text = ", ".join(spaces) if spaces else ""
|
| 262 |
+
title = f"{cf}→{ct}<br><small style='font-size: 0.75rem; color: #fde68a; text-shadow: 0 1px 2px rgba(0,0,0,0.6);'>Used by: {spaces_text}</small>"
|
| 263 |
html += create_card_html(cf, ct, title, "", "Used")
|
| 264 |
html += '</div></details>'
|
| 265 |
|