danielrosehill commited on
Commit
9276c57
·
1 Parent(s): 333c3d4

Make title white and add subtitle for better readability

Browse files

- Changed h1 from gradient to solid white for better contrast
- Added subtitle: 'A pattern for dynamic multiagent crew assembly'
- Styled subtitle with italic, muted color, and larger font size

Files changed (2) hide show
  1. source/README.md +2 -0
  2. style.css +11 -5
source/README.md CHANGED
@@ -1,5 +1,7 @@
1
  # Claude Agent "Picker" Pattern (Claude Code)
2
 
 
 
3
  ![Concept](https://img.shields.io/badge/Type-Concept-blue)
4
  ![Notes](https://img.shields.io/badge/Status-Notes-yellow)
5
  ![Idea](https://img.shields.io/badge/Stage-Idea-purple)
 
1
  # Claude Agent "Picker" Pattern (Claude Code)
2
 
3
+ A pattern for dynamic multiagent crew assembly
4
+
5
  ![Concept](https://img.shields.io/badge/Type-Concept-blue)
6
  ![Notes](https://img.shields.io/badge/Status-Notes-yellow)
7
  ![Idea](https://img.shields.io/badge/Stage-Idea-purple)
style.css CHANGED
@@ -81,14 +81,20 @@ body {
81
  #content h1 {
82
  font-size: 2.75rem;
83
  font-weight: 800;
84
- background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
85
- -webkit-background-clip: text;
86
- -webkit-text-fill-color: transparent;
87
- background-clip: text;
88
- margin-bottom: 1.5rem;
89
  line-height: 1.2;
90
  }
91
 
 
 
 
 
 
 
 
 
 
92
  #content h2 {
93
  font-size: 2.25rem;
94
  font-weight: 700;
 
81
  #content h1 {
82
  font-size: 2.75rem;
83
  font-weight: 800;
84
+ color: var(--text-primary);
85
+ margin-bottom: 0.5rem;
 
 
 
86
  line-height: 1.2;
87
  }
88
 
89
+ /* Subtitle styling */
90
+ #content h1 + p {
91
+ font-size: 1.375rem;
92
+ color: var(--text-muted);
93
+ font-weight: 500;
94
+ margin-bottom: 2.5rem;
95
+ font-style: italic;
96
+ }
97
+
98
  #content h2 {
99
  font-size: 2.25rem;
100
  font-weight: 700;