Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 422 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 422 Bytes

Swagger UI Dark

A modern dark theme for Swagger UI based on itz-fork/Fastapi.

Usage

ASP.NET

In Program.cs or Startup.cs:

app.UseSwaggerUI(c => {
    c.InjectStylesheet("/swagger-ui/swagger_ui_dark.css");
});
app.UseStaticFiles();

Make a top-level wwwroot/swagger-ui/ directory in your project and add swagger_ui_dark.css to it.