/* İlk boyama: theme-init.js data-theme atayana kadar koyu varsayılan */
html {
    background-color: #1a1a1a !important;
    color: #fff !important;
}

html[data-theme="light"] {
    background-color: #fff !important;
    color: #000 !important;
}

html:not(.loaded) * {
    transition: none !important;
}

html.loaded * {
    transition: initial;
}

body {
    opacity: 0;
}

html.theme-ready body {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}
