alexkueck commited on
Commit
723131b
1 Parent(s): 28982c0

Update beschreibungen.py

Browse files
Files changed (1) hide show
  1. beschreibungen.py +51 -0
beschreibungen.py CHANGED
@@ -85,4 +85,55 @@ small_and_beautiful_theme = gr.themes.Soft(
85
  background_fill_primary_dark="#303030", # Dunkler Hintergrund für den Dark Mode
86
 
87
  # Weitere Anpassungen
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  )
 
85
  background_fill_primary_dark="#303030", # Dunkler Hintergrund für den Dark Mode
86
 
87
  # Weitere Anpassungen
88
+ )
89
+
90
+
91
+ themeAlex = gr.themes.Soft(
92
+ primary_hue="purple",
93
+ secondary_hue="purple",
94
+ neutral_hue="stone",
95
+ ).set(
96
+ body_text_color='*neutral_100',
97
+ background_fill_primary='*neutral_950',
98
+ background_fill_secondary='*neutral_900',
99
+ border_color_accent='*neutral_600',
100
+ border_color_primary='*neutral_700',
101
+ color_accent_soft='*neutral_700',
102
+ link_text_color='*secondary_500',
103
+ link_text_color_active='*secondary_500',
104
+ link_text_color_hover='*secondary_400',
105
+ link_text_color_visited='*secondary_600',
106
+ code_background_fill='*neutral_800',
107
+ block_background_fill='*neutral_800',
108
+ block_label_background_fill='*primary_600',
109
+ block_label_text_color='*neutral_50',
110
+ block_label_text_color_dark='*neutral_50',
111
+ block_title_text_color='*neutral_50',
112
+ checkbox_background_color='*neutral_800',
113
+ checkbox_background_color_selected='*primary_700',
114
+ checkbox_border_color='*neutral_600',
115
+ checkbox_border_color_focus='*primary_600',
116
+ checkbox_border_color_hover='*neutral_600',
117
+ checkbox_border_color_selected='*primary_700',
118
+ checkbox_border_width='*input_border_width',
119
+ checkbox_label_background_fill_selected='*primary_600',
120
+ checkbox_label_text_color_selected='*checkbox_label_text_color',
121
+ error_background_fill='*background_fill_primary',
122
+ input_background_fill='*neutral_700',
123
+ input_background_fill_focus='*secondary_600',
124
+ input_border_color='*border_color_primary',
125
+ input_border_color_focus='*neutral_700',
126
+ input_placeholder_color='*neutral_500',
127
+ slider_color='*primary_600',
128
+ stat_background_fill='*primary_500',
129
+ table_border_color='*neutral_700',
130
+ table_even_background_fill='*neutral_950',
131
+ table_odd_background_fill='*neutral_900',
132
+ button_primary_background_fill='*primary_700',
133
+ button_primary_background_fill_hover='*primary_500',
134
+ button_primary_border_color='*primary_600',
135
+ button_secondary_background_fill='*neutral_600',
136
+ button_secondary_background_fill_hover='*primary_500',
137
+ button_secondary_border_color='*neutral_600',
138
+ button_secondary_text_color='*neutral_50'
139
  )