From e0bdc9ddbea234f7ebefe6abaa5ca875359ccc2f Mon Sep 17 00:00:00 2001 From: worldofiptvcom Date: Mon, 15 Dec 2025 11:35:37 +0300 Subject: [PATCH] Update index.html --- index.html | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 2291f60..5776877 100644 --- a/index.html +++ b/index.html @@ -788,9 +788,33 @@ color: #95a5a6; } - /* Span Tag - All operations */ - [data-theme="dark"] [id^="operations-"] .opblock-summary-path span { - color: #3498db; + /* Span Tag - Method-specific colors */ + [data-theme="dark"] .opblock-get .opblock-summary-path span { + color: rgb(74, 176, 244); /* GET - blue */ + } + + [data-theme="dark"] .opblock-post .opblock-summary-path span { + color: rgb(141, 199, 111); /* POST - green */ + } + + [data-theme="dark"] .opblock-put .opblock-summary-path span { + color: rgb(189, 135, 86); /* PUT - orange */ + } + + [data-theme="dark"] .opblock-delete .opblock-summary-path span { + color: rgb(237, 99, 113); /* DELETE - red */ + } + + [data-theme="dark"] .opblock-head .opblock-summary-path span { + color: rgb(217, 115, 234); /* HEAD - purple */ + } + + [data-theme="dark"] .opblock-options .opblock-summary-path span { + color: rgb(210, 175, 60); /* OPTIONS - yellow */ + } + + [data-theme="dark"] .opblock-patch .opblock-summary-path span { + color: rgb(113, 128, 147); /* PATCH - gray */ }