colors
Browse files
app.py
CHANGED
@@ -430,13 +430,14 @@ with gr.Blocks(title="FoldMark", css=custom_css) as demo:
|
|
430 |
|
431 |
with gr.Row():
|
432 |
view3d = Molecule3D(label="3D Visualization", reps=reps)
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
|
|
440 |
|
441 |
with gr.Row():
|
442 |
cif_file = gr.File(label="Download CIF File")
|
|
|
430 |
|
431 |
with gr.Row():
|
432 |
view3d = Molecule3D(label="3D Visualization", reps=reps)
|
433 |
+
|
434 |
+
legend = gr.Markdown("""
|
435 |
+
**Color Legend:**
|
436 |
+
|
437 |
+
- <span style="color:grey;">Gray: Unwatermarked Structure</span>
|
438 |
+
- <span style="color:cyan;">Cyan: Watermarked Structure</span>
|
439 |
+
""")
|
440 |
+
|
441 |
|
442 |
with gr.Row():
|
443 |
cif_file = gr.File(label="Download CIF File")
|