File size: 2,916 Bytes
c5fc219 | 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 | from __future__ import annotations
import gradio as gr
POVISLE_THEME = gr.themes.Base(
font=("DM Sans", "system-ui", "sans-serif"),
font_mono=("JetBrains Mono", "ui-monospace", "monospace"),
).set(
body_background_fill="#f8f7f6",
body_background_fill_dark="#f8f7f6",
body_text_color="#181416",
body_text_color_dark="#181416",
body_text_color_subdued="#5f585b",
body_text_color_subdued_dark="#5f585b",
background_fill_primary="#ffffff",
background_fill_primary_dark="#ffffff",
background_fill_secondary="#f8f7f6",
background_fill_secondary_dark="#f8f7f6",
border_color_primary="#e3dfdc",
border_color_primary_dark="#e3dfdc",
border_color_accent="#d7263d",
border_color_accent_dark="#d7263d",
color_accent="#d7263d",
color_accent_soft="#fff1f2",
color_accent_soft_dark="#fff1f2",
link_text_color="#2c5f8a",
link_text_color_dark="#2c5f8a",
link_text_color_hover="#181416",
link_text_color_hover_dark="#181416",
block_background_fill="#ffffff",
block_background_fill_dark="#ffffff",
block_border_color="#e3dfdc",
block_border_color_dark="#e3dfdc",
block_shadow="0 2px 16px rgba(39, 33, 31, 0.07)",
block_shadow_dark="0 2px 16px rgba(39, 33, 31, 0.07)",
block_radius="8px",
input_background_fill="#ffffff",
input_background_fill_dark="#ffffff",
input_background_fill_focus="#ffffff",
input_background_fill_focus_dark="#ffffff",
input_border_color="#e3dfdc",
input_border_color_dark="#e3dfdc",
input_border_color_focus="#d7263d",
input_border_color_focus_dark="#d7263d",
input_placeholder_color="#8b8588",
input_placeholder_color_dark="#8b8588",
input_radius="8px",
table_text_color="#5f585b",
table_text_color_dark="#5f585b",
table_border_color="#e3dfdc",
table_border_color_dark="#e3dfdc",
table_even_background_fill="#fbfaf9",
table_even_background_fill_dark="#fbfaf9",
table_odd_background_fill="#ffffff",
table_odd_background_fill_dark="#ffffff",
table_row_focus="#fff1f2",
table_row_focus_dark="#fff1f2",
button_primary_background_fill="#d7263d",
button_primary_background_fill_dark="#d7263d",
button_primary_background_fill_hover="#b91c33",
button_primary_background_fill_hover_dark="#b91c33",
button_primary_text_color="#ffffff",
button_primary_text_color_dark="#ffffff",
button_secondary_background_fill="#ffffff",
button_secondary_background_fill_dark="#ffffff",
button_secondary_background_fill_hover="#fff1f2",
button_secondary_background_fill_hover_dark="#fff1f2",
button_secondary_border_color="#e3dfdc",
button_secondary_border_color_dark="#e3dfdc",
button_secondary_text_color="#181416",
button_secondary_text_color_dark="#181416",
shadow_drop="0 2px 16px rgba(39, 33, 31, 0.07)",
shadow_drop_lg="0 8px 40px rgba(39, 33, 31, 0.11)",
)
|