Answers for "what is Dark mode screens in ,net core"

C#
0

what is Dark mode screens in ,net core

[data-theme='dark'] {
    .post .post-card {
        background: $dark-post-background-color;
    }

    .card .card-content,
    .card .card-footer {
        background: $dark-post-background-color;
    }

    h1, h2, h3, h4, h5, h6 {
        color: $gray-lighter;
    }

    body { 
        color: $gray-light;
        background: $gray-darker;
    }
}
Posted by: Guest on June-16-2021

C# Answers by Framework

Browse Popular Code Answers by Language