You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you try to run the code at the first the navbar is light blue as it should be, but if you change to dark mode and then again to light mode, the navbar becomes white even if in bs4dash_status() I specified that the light color should be that light blue.
I want to add a home button in the navbar that has the same behaviour and colors of the switch button and the controllbar button (so like just an icon without the button around and the icon should be dark blue when not triggered, and white when hover or click). I tried some combinations even with different packages but without any luck.
I think my problem is both with {fresh} package and with {bs4Dash} so I posted the issue also here dreamRs/fresh#11
The text was updated successfully, but these errors were encountered:
I was testing out your demo code from your README and noticed that the toggle does not work properly, the plot has a white background when in dark mode toggle.
Since I have used thematic and bslib in Shiny apps before I tried to use the following:
# placed above the ui = dashboard()
thematic::thematic_shiny(font='auto')
# place right after ui = dashboard()
# ran bs_theme_preview() since initially copying theme = bs_theme( ) from another file did not work to get the plot to have same color
#bs_theme_preview(),
# this should have styled the dashboard with a black background
theme = bs_theme(theme, fg = "rgb(0, 221, 110)", primary = "#6CD62A",
font_scale = NULL, bootswatch = "cyborg", bg = "rgb(6, 6, 6)"),
This failed to work. I expected the plot to have same background color as theme.
Hi,
I was trying to made a customized bs4Dash using
{fresh}
package but I have some problems. Here's a reproducible example.I think my problem is both with
{fresh}
package and with{bs4Dash}
so I posted the issue also here dreamRs/fresh#11The text was updated successfully, but these errors were encountered: