Spaces:
Sleeping
Sleeping
File size: 1,155 Bytes
7ce3a9e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
import gradio as gr
custom_css = """
body {
background-color: #1a1a1a; /* Very dark gray background for the entire page */
color: #e0e0e0; /* Light gray text color for better contrast */
}
.gradio-container {
background-color: #2c2c2c; /* Slightly lighter dark gray for the main Gradio app container */
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Darker shadow for dark theme */
}
/* Style for the centered text */
.center-text {
text-align: center;
width: 100%; /* Ensure it takes full width to center content */
}
.gradio-markdown {
color: #e0e0e0; /* Ensure markdown text is light */
}
"""
with gr.Blocks(css=custom_css) as demo:
gr.Markdown("# My Custom Styled App", elem_classes="center-text") # Centering the main title as well
with gr.Row(elem_classes="center-text"):
gr.Markdown("""
🎯 إجابات قاطعة: يُسمح ✅ | لا يُسمح ❌ | مطلوب 📋
⚖️ مراجع قانونية دقيقة: CBK | CMA | AML | المبادئ القانونية
""")
gr.Textbox(label="Enter text here")
gr.Button("Submit")
demo.launch()
|