Greasy Fork is available in English.

GitIngest Dark Mode (GitHub Dark Inspired)

Applies a GitHub dark mode–like theme to GitIngest.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

/* ==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;
    }
}