Spaces:
Running
Running
feat: Overhaul WebUI, add PDF/Text export, use Poetry in Docker
Browse files
app.py
CHANGED
@@ -56,14 +56,14 @@ class Seafoam(Base):
|
|
56 |
super().set(
|
57 |
# Core Colors
|
58 |
body_background_fill_dark="black", # True black
|
59 |
-
body_text_color_dark=
|
60 |
block_background_fill_dark=colors.gray_900,
|
61 |
block_border_color_dark=colors.gray_700,
|
62 |
block_label_background_fill_dark=colors.gray_800,
|
63 |
-
block_label_text_color_dark=
|
64 |
input_background_fill_dark=colors.gray_800,
|
65 |
input_border_color_dark=colors.gray_600,
|
66 |
-
input_text_color_dark=
|
67 |
button_primary_background_fill_dark=colors.teal_600,
|
68 |
button_primary_background_fill_hover_dark=colors.teal_500,
|
69 |
button_primary_text_color_dark="white",
|
@@ -74,9 +74,9 @@ class Seafoam(Base):
|
|
74 |
# Light Mode
|
75 |
body_background_fill="white",
|
76 |
body_text_color=colors.gray_800,
|
77 |
-
block_background_fill=
|
78 |
block_border_color=colors.gray_300,
|
79 |
-
block_label_background_fill=
|
80 |
block_label_text_color=colors.gray_700,
|
81 |
input_background_fill=colors.white,
|
82 |
input_border_color=colors.gray_300,
|
@@ -84,7 +84,7 @@ class Seafoam(Base):
|
|
84 |
button_primary_background_fill=colors.teal_500,
|
85 |
button_primary_background_fill_hover=colors.teal_600,
|
86 |
button_primary_text_color="white",
|
87 |
-
button_secondary_background_fill=
|
88 |
button_secondary_background_fill_hover=colors.gray_300,
|
89 |
button_secondary_text_color=colors.gray_800,
|
90 |
slider_color=colors.teal_500,
|
|
|
56 |
super().set(
|
57 |
# Core Colors
|
58 |
body_background_fill_dark="black", # True black
|
59 |
+
body_text_color_dark="*neutral_100",
|
60 |
block_background_fill_dark=colors.gray_900,
|
61 |
block_border_color_dark=colors.gray_700,
|
62 |
block_label_background_fill_dark=colors.gray_800,
|
63 |
+
block_label_text_color_dark="*neutral_100",
|
64 |
input_background_fill_dark=colors.gray_800,
|
65 |
input_border_color_dark=colors.gray_600,
|
66 |
+
input_text_color_dark="*neutral_50",
|
67 |
button_primary_background_fill_dark=colors.teal_600,
|
68 |
button_primary_background_fill_hover_dark=colors.teal_500,
|
69 |
button_primary_text_color_dark="white",
|
|
|
74 |
# Light Mode
|
75 |
body_background_fill="white",
|
76 |
body_text_color=colors.gray_800,
|
77 |
+
block_background_fill="*neutral_50",
|
78 |
block_border_color=colors.gray_300,
|
79 |
+
block_label_background_fill="*neutral_100",
|
80 |
block_label_text_color=colors.gray_700,
|
81 |
input_background_fill=colors.white,
|
82 |
input_border_color=colors.gray_300,
|
|
|
84 |
button_primary_background_fill=colors.teal_500,
|
85 |
button_primary_background_fill_hover=colors.teal_600,
|
86 |
button_primary_text_color="white",
|
87 |
+
button_secondary_background_fill="*neutral_100",
|
88 |
button_secondary_background_fill_hover=colors.gray_300,
|
89 |
button_secondary_text_color=colors.gray_800,
|
90 |
slider_color=colors.teal_500,
|