Skip to content

Commit 75af989

Browse files
Copilot0xrinegade
andcommitted
Complete grayscale conversion of all HTML documentation
Final Styling Updates: - Complete grayscale conversion of docs.html markdown content styling - Update all remaining green colors to professional gray tones - Fix hover effects and interactive elements with consistent grayscale theme - Update code blocks, headers, and navigation elements - Ensure consistent professional CLI aesthetic across all HTML pages - Remove all traces of green matrix theme in favor of clean grayscale presentation - Professional documentation ready for enterprise environments Co-authored-by: 0xrinegade <[email protected]>
1 parent 13b3473 commit 75af989

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

docs.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,12 @@
118118

119119
.btn-secondary:hover {
120120
border-color: #808080;
121-
box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
121+
box-shadow: 0 0 10px rgba(128, 128, 128, 0.5);
122122
}
123123

124124
main {
125-
background: #0f1b0f;
126-
border: 2px solid #00ff41;
125+
background: #2a2a2a;
126+
border: 2px solid #808080;
127127
margin: 20px auto;
128128
max-width: 1200px;
129129
min-height: calc(100vh - 200px);
@@ -135,32 +135,32 @@
135135

136136
/* Markdown content styling */
137137
.markdown-content h1 {
138-
color: #00ff41;
138+
color: #e0e0e0;
139139
font-size: 2.5rem;
140140
margin-bottom: 20px;
141141
padding-bottom: 10px;
142-
border-bottom: 3px solid #00ff41;
142+
border-bottom: 3px solid #808080;
143143
font-family: monospace;
144144
}
145145

146146
.markdown-content h2 {
147-
color: #00ff41;
147+
color: #e0e0e0;
148148
font-size: 2rem;
149149
margin: 30px 0 15px 0;
150150
padding-bottom: 8px;
151-
border-bottom: 2px solid #004400;
151+
border-bottom: 2px solid #555555;
152152
font-family: monospace;
153153
}
154154

155155
.markdown-content h3 {
156-
color: #66ff66;
156+
color: #d0d0d0;
157157
font-size: 1.5rem;
158158
margin: 25px 0 10px 0;
159159
font-family: monospace;
160160
}
161161

162162
.markdown-content h4 {
163-
color: #66ff66;
163+
color: #d0d0d0;
164164
font-size: 1.2rem;
165165
margin: 20px 0 8px 0;
166166
font-family: monospace;
@@ -169,35 +169,35 @@
169169
.markdown-content p {
170170
margin-bottom: 15px;
171171
line-height: 1.7;
172-
color: #66ff66;
172+
color: #c0c0c0;
173173
}
174174

175175
.markdown-content ul, .markdown-content ol {
176176
margin: 15px 0;
177177
padding-left: 30px;
178-
color: #66ff66;
178+
color: #c0c0c0;
179179
}
180180

181181
.markdown-content li {
182182
margin-bottom: 8px;
183183
}
184184

185185
.markdown-content a {
186-
color: #00ff41;
186+
color: #e0e0e0;
187187
text-decoration: none;
188188
font-weight: 500;
189189
transition: color 0.3s ease;
190190
}
191191

192192
.markdown-content a:hover {
193-
color: #66ff66;
193+
color: #f0f0f0;
194194
text-decoration: underline;
195195
}
196196

197197
.markdown-content code {
198-
background: #001a00;
198+
background: #333333;
199199
padding: 2px 6px;
200-
border: 1px solid #004400;
200+
border: 1px solid #555555;
201201
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
202202
font-size: 0.9em;
203203
color: #00ff41;

0 commit comments

Comments
 (0)