Skip to content

Commit 4b13ee8

Browse files
committed
File list now grey instead of red.
1 parent 8b8936b commit 4b13ee8

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,4 +374,10 @@ FodyWeavers.xsd
374374

375375
# SchemaMagic specific
376376
Output/
377-
Output/*.html
377+
Output/*.html
378+
379+
# Secrets - API keys, tokens, credentials
380+
.secrets/
381+
*.secret
382+
*.secrets
383+
api-keys.txt

SchemaMagic.Web/wwwroot/css/app.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,12 +495,12 @@ code {
495495
border-radius: 0.25rem;
496496
font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
497497
font-size: 0.875em;
498-
color: #d63384;
498+
color: #495057; /* Changed from #d63384 (red) to neutral gray */
499499
}
500500

501501
[data-bs-theme="dark"] code {
502502
background: #343a40;
503-
color: #e685b5;
503+
color: #adb5bd; /* Lighter gray for dark mode */
504504
}
505505

506506
/* Badges */

0 commit comments

Comments
 (0)