Spaces:
Sleeping
Sleeping
File size: 2,545 Bytes
2ada650 |
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
import gradio as gr
# https://www.gradio.app/docs/themes
minigptlv_style = gr.themes.Soft(
primary_hue=gr.themes.Color(
c50="#ff339c",
c100="#791aff",
c200="#ff339c",
c300="#ff339c",
c400="#ff339c",
c500="3384FF",
c600="#ff339c",
c700="#ff339c",
c800="#ff339c",
c900="#ff339c",
c950="#ff339c",
name="lighter_blue",
),
secondary_hue=gr.themes.Color(
c50="#ff339c",
c100="#ff339c",
c200="#ff339c",
c300="#ff339c",
c400="#ff339c",
c500="#ff339c",
c600="#ff339c",
c700="#ff339c",
c800="#ff339c",
c900="#ff339c",
c950="#ff339c",
),
neutral_hue=gr.themes.Color(
c50="#ff339c",
c100="#FFFFFF",
c200="#3384FF",
c300="#ff339c",
c400="#FFFFFF",
c500="#FFFFFF",
c600="#ff339c",
c700="#192423",
c800="#cccdde",
c900="#ff339c",
c950="#ff339c",
name="dark_scale",
),
radius_size=gr.themes.sizes.radius_sm,
).set(
button_primary_text_color="#ff339c",
button_primary_background_fill="#ff339c",
button_primary_background_fill_dark="#FFFFFF",
button_primary_border_color_dark="#FFFFFF",
button_primary_text_color_dark="#000000",
button_secondary_background_fill="#ff339c",
button_secondary_background_fill_hover="#40c928",
button_secondary_background_fill_dark="#ff339c",
button_secondary_background_fill_hover_dark="#40c928",
button_secondary_text_color="white",
button_secondary_text_color_dark="#white",
block_title_background_fill_dark="#1a94ff",
block_label_background_fill_dark="#1a94ff",
input_background_fill="#999999",
background_fill_primary="#1e1d1f",
background_fill_primary_dark="#1e1d1f",
)
# Define custom CSS
custom_css = """
/* Custom CSS for Gradio interface */
.input-box {
font-family: Arial, sans-serif;
background-color: #F0F0F0;
border: 1px solid #CCCCCC;
}
.output-box {
font-family: Arial, sans-serif;
background-color: #FFFFFF;
border: 1px solid #CCCCCC;
}
.checkbox {
color: #464646;
}
.textbox {
width: 100%;
}
.output-image {
border: 1px solid #CCCCCC;
}
"""
text_css = """
h1 {
text-align: center;
display:block;
font-size: 45px;
}
h5 {
text-align: center;
display:block;
}
""" |