Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,21 @@ input[type='number'] {
.codespan {
padding: 0.15rem 0.3rem;
font-size: 0.85em;
@apply font-mono rounded-md text-gray-800 bg-gray-100 dark:text-gray-200 dark:bg-gray-800 mx-0.5;
@apply font-mono rounded-md font-semibold mx-0.5;
/* Keep inline code readable even when external markdown themes set low-contrast code colors. */
color: rgb(0 0 0) !important; /* pure black */
-webkit-text-fill-color: rgb(0 0 0) !important;
opacity: 1 !important;
background-color: rgb(229 231 235) !important; /* gray-200 */
border: 1px solid rgb(156 163 175); /* gray-400 */
}

.dark .codespan {
color: rgb(243 244 246) !important; /* gray-100 */
-webkit-text-fill-color: rgb(243 244 246) !important;
opacity: 1 !important;
background-color: rgb(55 65 81) !important; /* gray-700 */
border-color: rgb(75 85 99); /* gray-600 */
}

.svelte-flow {
Expand Down