Maia Pelletier commited on
Commit
2f50a55
·
1 Parent(s): c4cef6d

start branding skin

Browse files
Files changed (1) hide show
  1. app.py +15 -11
app.py CHANGED
@@ -44,10 +44,14 @@ class MinimalistTheme(Base):
44
  )
45
  super().set(
46
  # Clean backgrounds
47
- body_background_fill="#ffffff",
48
- body_background_fill_dark="#0f0f0f",
49
- block_background_fill="#ffffff",
50
- block_background_fill_dark="#1a1a1a",
 
 
 
 
51
 
52
  # Subtle borders
53
  block_border_width="1px",
@@ -56,29 +60,29 @@ class MinimalistTheme(Base):
56
  block_shadow="none",
57
 
58
  # Clean buttons
59
- button_primary_background_fill="#2563eb",
60
  button_primary_background_fill_hover="#1d4ed8",
61
  button_primary_text_color="#ffffff",
62
- button_primary_background_fill_dark="#3b82f6",
63
  button_primary_background_fill_hover_dark="#2563eb",
64
- button_secondary_background_fill="#f3f4f6",
65
  button_secondary_background_fill_hover="#e5e7eb",
66
- button_secondary_text_color="#111827",
67
  button_secondary_background_fill_dark="#374151",
68
  button_secondary_background_fill_hover_dark="#4b5563",
69
  button_border_width="1px",
70
 
71
  # Input fields
72
  input_background_fill="#ffffff",
73
- input_background_fill_dark="#1a1a1a",
74
  input_border_width="1px",
75
  input_border_color="#d1d5db",
76
  input_border_color_dark="#374151",
77
 
78
  # Text colors
79
- body_text_color="#111827",
80
  body_text_color_dark="#e5e7eb",
81
- block_label_text_color="#374151",
82
  block_label_text_color_dark="#9ca3af",
83
  )
84
 
 
44
  )
45
  super().set(
46
  # Clean backgrounds
47
+ background_fill_primary="#ffffff",
48
+ background_fill_primary_dark="#1a1a1a",
49
+ background_fill_secondary="#f3f6ee",
50
+ background_fill_secondary_dark="#24372b",
51
+ body_background_fill="#f3f6ee",
52
+ body_background_fill_dark="#ffffff",
53
+ block_background_fill="#f3f6ee",
54
+ block_background_fill_dark="#24372b",
55
 
56
  # Subtle borders
57
  block_border_width="1px",
 
60
  block_shadow="none",
61
 
62
  # Clean buttons
63
+ button_primary_background_fill="#8abf50",
64
  button_primary_background_fill_hover="#1d4ed8",
65
  button_primary_text_color="#ffffff",
66
+ button_primary_background_fill_dark="#8abf50",
67
  button_primary_background_fill_hover_dark="#2563eb",
68
+ button_secondary_background_fill="#247b55",
69
  button_secondary_background_fill_hover="#e5e7eb",
70
+ button_secondary_text_color="#ffffff",
71
  button_secondary_background_fill_dark="#374151",
72
  button_secondary_background_fill_hover_dark="#4b5563",
73
  button_border_width="1px",
74
 
75
  # Input fields
76
  input_background_fill="#ffffff",
77
+ input_background_fill_dark="red",
78
  input_border_width="1px",
79
  input_border_color="#d1d5db",
80
  input_border_color_dark="#374151",
81
 
82
  # Text colors
83
+ body_text_color="#1e1e1e",
84
  body_text_color_dark="#e5e7eb",
85
+ block_label_text_color="#1e1e1e",
86
  block_label_text_color_dark="#9ca3af",
87
  )
88