﻿.ThemeColor {
    color: #9dca00 !important;
}

.blinking {
    animation: blinkingText 0.9s infinite;
}

@keyframes blinkingText {
    10% {
        color: transparent;
    }

    100% {
        color: yellow;
    }
}

