Hangfire.Dashboard.Dark shows the hangfire dashboard in a beautiful dark theme.
In .NET Core's Startup.cs:
public void ConfigureServices(IServiceCollection services)
{
services.AddHangfire(config =>
{
...
config.UseDarkDashboard();
});
}
Otherwise,
GlobalConfiguration.Configuration
...
.UseDarkDashboard();