Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -32,10 +32,10 @@ realtime_update = st.sidebar.checkbox("Update in realtime", True)
|
|
32 |
|
33 |
# Create a canvas component
|
34 |
canvas_result = st_canvas(
|
35 |
-
fill_color="
|
36 |
stroke_width=stroke_width,
|
37 |
-
stroke_color="
|
38 |
-
background_color="
|
39 |
background_image=None,
|
40 |
update_streamlit=realtime_update,
|
41 |
height=150,
|
|
|
32 |
|
33 |
# Create a canvas component
|
34 |
canvas_result = st_canvas(
|
35 |
+
fill_color="rgb(0, 0, 0)", # Fixed fill color with some opacity
|
36 |
stroke_width=stroke_width,
|
37 |
+
stroke_color="rgb(255, 255, 255)",
|
38 |
+
background_color="rgb(0, 0, 0)",
|
39 |
background_image=None,
|
40 |
update_streamlit=realtime_update,
|
41 |
height=150,
|