/* Light Mode Text Contrast Fix */
html:not(.dark) .prose,
html:not(.dark) .prose p,
html:not(.dark) .prose li,
html:not(.dark) .prose ul,
html:not(.dark) .prose ol {
    color: #16213a !important;
}

html:not(.dark) .prose h1,
html:not(.dark) .prose h2,
html:not(.dark) .prose h3,
html:not(.dark) .prose h4,
html:not(.dark) .prose h5,
html:not(.dark) .prose h6,
html:not(.dark) .prose strong {
    color: #0a1525 !important;
}

html:not(.dark) .prose a {
    color: #005cff !important;
}

html:not(.dark) .prose code {
    color: #16213a !important;
    background-color: #dde6f4 !important;
}

html:not(.dark) .prose blockquote {
    color: #2b3850 !important;
    border-left-color: #005cff !important;
}

html:not(.dark) .prose pre {
    background-color: #e8eef8 !important;
    border-color: #c3d2e6 !important;
}

html:not(.dark) .prose pre code {
    color: #16213a !important;
    background-color: transparent !important;
}

/* Fix for article content */
html:not(.dark) article .prose,
html:not(.dark) article.prose,
html:not(.dark) [class*="prose"] {
    color: #16213a !important;
}

/* Fix text that might be inherited */
html:not(.dark) body,
html:not(.dark) main,
html:not(.dark) .content,
html:not(.dark) .post-content,
html:not(.dark) .entry-content {
    color: #16213a;
}
