Update beschreibungen.py
Browse files- beschreibungen.py +51 -1
beschreibungen.py
CHANGED
|
@@ -94,4 +94,54 @@ small_and_beautiful_theme = gr.themes.Soft(
|
|
| 94 |
block_title_text_color="*primary_500",
|
| 95 |
block_title_background_fill="*primary_100",
|
| 96 |
input_background_fill="#F6F6F6",
|
| 97 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
block_title_text_color="*primary_500",
|
| 95 |
block_title_background_fill="*primary_100",
|
| 96 |
input_background_fill="#F6F6F6",
|
| 97 |
+
)
|
| 98 |
+
|
| 99 |
+
themeAlex = gr.themes.Soft(
|
| 100 |
+
primary_hue="purple",
|
| 101 |
+
secondary_hue="purple",
|
| 102 |
+
neutral_hue="stone",
|
| 103 |
+
).set(
|
| 104 |
+
body_text_color='*neutral_100',
|
| 105 |
+
background_fill_primary='*neutral_950',
|
| 106 |
+
background_fill_secondary='*neutral_900',
|
| 107 |
+
border_color_accent='*neutral_600',
|
| 108 |
+
border_color_primary='*neutral_700',
|
| 109 |
+
color_accent_soft='*neutral_700',
|
| 110 |
+
link_text_color='*secondary_500',
|
| 111 |
+
link_text_color_active='*secondary_500',
|
| 112 |
+
link_text_color_hover='*secondary_400',
|
| 113 |
+
link_text_color_visited='*secondary_600',
|
| 114 |
+
code_background_fill='*neutral_800',
|
| 115 |
+
block_background_fill='*neutral_800',
|
| 116 |
+
block_label_background_fill='*primary_600',
|
| 117 |
+
block_label_text_color='*neutral_50',
|
| 118 |
+
block_label_text_color_dark='*neutral_50',
|
| 119 |
+
block_title_text_color='*neutral_50',
|
| 120 |
+
checkbox_background_color='*neutral_800',
|
| 121 |
+
checkbox_background_color_selected='*primary_700',
|
| 122 |
+
checkbox_border_color='*neutral_600',
|
| 123 |
+
checkbox_border_color_focus='*primary_600',
|
| 124 |
+
checkbox_border_color_hover='*neutral_600',
|
| 125 |
+
checkbox_border_color_selected='*primary_700',
|
| 126 |
+
checkbox_border_width='*input_border_width',
|
| 127 |
+
checkbox_label_background_fill_selected='*primary_600',
|
| 128 |
+
checkbox_label_text_color_selected='*checkbox_label_text_color',
|
| 129 |
+
error_background_fill='*background_fill_primary',
|
| 130 |
+
input_background_fill='*neutral_700',
|
| 131 |
+
input_background_fill_focus='*secondary_600',
|
| 132 |
+
input_border_color='*border_color_primary',
|
| 133 |
+
input_border_color_focus='*neutral_700',
|
| 134 |
+
input_placeholder_color='*neutral_500',
|
| 135 |
+
slider_color='*primary_600',
|
| 136 |
+
stat_background_fill='*primary_500',
|
| 137 |
+
table_border_color='*neutral_700',
|
| 138 |
+
table_even_background_fill='*neutral_950',
|
| 139 |
+
table_odd_background_fill='*neutral_900',
|
| 140 |
+
button_primary_background_fill='*primary_700',
|
| 141 |
+
button_primary_background_fill_hover='*primary_500',
|
| 142 |
+
button_primary_border_color='*primary_600',
|
| 143 |
+
button_secondary_background_fill='*neutral_600',
|
| 144 |
+
button_secondary_background_fill_hover='*primary_500',
|
| 145 |
+
button_secondary_border_color='*neutral_600',
|
| 146 |
+
button_secondary_text_color='*neutral_50'
|
| 147 |
+
)
|