Spaces:
Running
Running
leo commited on
Commit ·
83c2210
1
Parent(s): ba91995
fix dark theme: opblock paths + schemas readability
Browse files- index.html +17 -2
index.html
CHANGED
|
@@ -33,13 +33,28 @@
|
|
| 33 |
|
| 34 |
.swagger-ui .info a { color: #58a6ff; }
|
| 35 |
.swagger-ui .scheme-container { background: #161b22; box-shadow: none; }
|
| 36 |
-
.swagger-ui section.models { border: 1px solid #30363d; }
|
| 37 |
-
.swagger-ui section.models
|
|
|
|
| 38 |
.swagger-ui .model-box { background: #161b22; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
|
| 40 |
.swagger-ui .opblock-tag { border-bottom-color: #30363d; }
|
|
|
|
| 41 |
.swagger-ui .opblock { border-color: #30363d; background: #161b22; }
|
| 42 |
.swagger-ui .opblock .opblock-summary { border-color: #30363d; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
.swagger-ui .opblock .opblock-section-header { background: #0d1117; }
|
| 44 |
.swagger-ui .opblock .opblock-section-header h4 { color: #c9d1d9; }
|
| 45 |
|
|
|
|
| 33 |
|
| 34 |
.swagger-ui .info a { color: #58a6ff; }
|
| 35 |
.swagger-ui .scheme-container { background: #161b22; box-shadow: none; }
|
| 36 |
+
.swagger-ui section.models { border: 1px solid #30363d; background: #161b22; }
|
| 37 |
+
.swagger-ui section.models h4 span { color: #c9d1d9 !important; }
|
| 38 |
+
.swagger-ui section.models .model-container { background: #161b22; border-color: #30363d; }
|
| 39 |
.swagger-ui .model-box { background: #161b22; }
|
| 40 |
+
.swagger-ui .model { color: #c9d1d9; }
|
| 41 |
+
.swagger-ui .model .property,
|
| 42 |
+
.swagger-ui .model .property.primitive { color: #c9d1d9; }
|
| 43 |
+
.swagger-ui .model-title { color: #c9d1d9; }
|
| 44 |
+
.swagger-ui .model span,
|
| 45 |
+
.swagger-ui .model br + span { color: #8b949e; }
|
| 46 |
+
.swagger-ui .prop-type { color: #79c0ff; }
|
| 47 |
+
.swagger-ui .prop-format { color: #8b949e; }
|
| 48 |
|
| 49 |
.swagger-ui .opblock-tag { border-bottom-color: #30363d; }
|
| 50 |
+
.swagger-ui .opblock-tag small { color: #8b949e; }
|
| 51 |
.swagger-ui .opblock { border-color: #30363d; background: #161b22; }
|
| 52 |
.swagger-ui .opblock .opblock-summary { border-color: #30363d; }
|
| 53 |
+
.swagger-ui .opblock .opblock-summary-path,
|
| 54 |
+
.swagger-ui .opblock .opblock-summary-path span,
|
| 55 |
+
.swagger-ui .opblock .opblock-summary-path a,
|
| 56 |
+
.swagger-ui .opblock .opblock-summary-operation-id,
|
| 57 |
+
.swagger-ui .opblock .opblock-summary-description { color: #e6edf3 !important; }
|
| 58 |
.swagger-ui .opblock .opblock-section-header { background: #0d1117; }
|
| 59 |
.swagger-ui .opblock .opblock-section-header h4 { color: #c9d1d9; }
|
| 60 |
|