From f27dee5302b8db103bc45ff4878e77bf551ddff3 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Tue, 5 May 2026 10:34:05 -0400 Subject: [PATCH] fix modals not being in dark mode --- css/style.css | 8 ++++++++ pages/prompts.html | 50 ++++++++++++++++++++++++++++++++++++++-------- 2 files changed, 50 insertions(+), 8 deletions(-) diff --git a/css/style.css b/css/style.css index 9a16e4a..30f9b6b 100644 --- a/css/style.css +++ b/css/style.css @@ -446,6 +446,14 @@ footer { --shadow-color: rgba(255,20,147,0.15); --shadow-lg-color: rgba(255,20,147,0.2); --hero-overlay: rgba(13,13,13,0.3); + --white: #16213e; + --pink-100: #2a1a2e; + --pink-200: #3a2a3e; + --pink-300: #e91082; + --pink-500: #ff69b4; + --pink-600: #ffb6d9; + --pink-700: #ffa8c8; + --pink-900: #ffcce0; } [data-theme="dark"] body { diff --git a/pages/prompts.html b/pages/prompts.html index 69c49be..d9b82fe 100644 --- a/pages/prompts.html +++ b/pages/prompts.html @@ -95,13 +95,14 @@
Few-Shot -

Show examples to guide behavior

-

Include a few input-output examples in the prompt to teach the model the desired format or style.

+

Show examples to teach a pattern

+

Include a few input-output examples so the model infers a pattern it couldn't know from instructions alone.

Prompt:
- "Classify the sentiment:
- 'I love this!' → Positive
- 'This is terrible.' → Negative
- 'It's okay, I guess.' → ?"
+ "Convert words to star code:
+ 'hello world' → ⭐⭐⭐⭐⭐ ⭐⭐⭐⭐⭐⭐
+ 'cat' → ⭐⭐⭐
+ 'I am happy' → ⭐ ⭐⭐ ⭐⭐⭐⭐⭐
+ 'The cat eats' → ?"
Chain-of-Thought @@ -226,6 +227,11 @@
+
+
+
+ +

       
@@ -245,13 +251,41 @@