GitIngest Dark Mode (GitHub Dark Inspired)

Applies a GitHub dark mode–like theme to GitIngest.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

/* ==UserStyle==
@name           GitIngest Dark Mode (GitHub Dark Inspired)
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Applies a GitHub dark mode–like theme to GitIngest.
@author         Nighthawk
// @license MIT
==/UserStyle== */
@-moz-document domain("gitingest.com") {
    /* Base background and text */
    body {
        background-color: #0d1117 !important;
        color: #c9d1d9 !important;
    }

    /* Container backgrounds */
    .main,
    main,
    .container,
    .max-w-4xl,
    .mx-auto {
        background-color: transparent !important;
    }

    /* Cards, panels, and borders */
    .rounded-xl,
    .border-\[3px\],
    .border-gray-900 {
        background-color: #161b22 !important;
        border-color: #30363d !important;
    }

    /* Form elements: inputs, textareas, and select */
    input,
    textarea,
    select {
        background-color: #0d1117 !important;
        border: 1px solid #30363d !important;
        color: #c9d1d9 !important;
    }

    input::placeholder,
    textarea::placeholder {
        color: #8b949e !important;
    }

    /* Buttons styling */
    button,
    a.button,
    a[role="button"] {
        background-color: #238636 !important;
        border-color: #238636 !important;
        color: #ffffff !important;
        transition: background-color 0.2s, border-color 0.2s;
    }

    button:hover,
    a.button:hover,
    a[role="button"]:hover {
        background-color: #2ea043 !important;
        border-color: #2ea043 !important;
    }

    /* Hyperlinks */
    a {
        color: #58a6ff !important;
    }

    a:hover {
        text-decoration: underline !important;
    }

    /* Header and Navigation */
    header,
    .navbar {
        background-color: #161b22 !important;
        border-bottom: 1px solid #30363d !important;
    }

    /* Footer */
    footer {
        background-color: #161b22 !important;
        border-top: 1px solid #30363d !important;
        color: #c9d1d9 !important;
    }

    /* Copy and similar UI buttons */
    button,
    .group button {
        box-shadow: none !important;
    }

    /* Range slider */
    input[type="range"] {
        background: #30363d !important;
    }

    /* SVG icons: force to use currentColor for fill and stroke */
    svg {
        fill: currentColor !important;
        stroke: currentColor !important;
    }

    /* Code blocks and monospaced text */
    .font-mono,
    pre,
    code {
        background-color: #161b22 !important;
        color: #c9d1d9 !important;
        border: 1px solid #30363d !important;
    }

    /* Inline background overrides for Tailwind classes (using attribute escapes) */
    .bg-\[\#fff4da\],
    .bg-\[\#FAFAFA\],
    .bg-\[\#fafafa\] {
        background-color: #161b22 !important;
    }

    .bg-\[\#ffc480\] {
        background-color: #238636 !important;
    }

    .bg-gray-900 {
        background-color: #161b22 !important;
    }

    /* Adjust pseudo-shadow offsets (Tailwind translate classes) */
    .translate-y-2,
    .translate-x-2 {
        background-color: #0d1117 !important;
    }

    /* Prose content (for documentation pages) */
    .prose {
        color: #c9d1d9 !important;
    }

    .prose a {
        color: #58a6ff !important;
    }

    .prose blockquote {
        border-left: 4px solid #30363d !important;
        color: #8b949e !important;
    }

    /* Loader spinners */
    .animate-spin {
        color: #ffffff !important;
    }

    /* Override text color utilities if needed */
    .text-gray-900 {
        color: #c9d1d9 !important;
    }

    .text-gray-600 {
        color: #8b949e !important;
    }

    /* Override any additional light backgrounds */
    .bg-\[\#e6e8eb\],
    .bg-white {
        background-color: #161b22 !important;
    }
}