/* Using CSS selector to select folder icons */
#listing .item[data-dir=true] div i {
    color: #fe3e94;
}

#listing .item[aria-selected=true] {
    background: var(--icon-blue)!important;
}

:root {
    --blue: #fe3e94;
    --dark-blue: #c30057;
    --red: #F44336;
    --dark-red: #D32F2F;
    --moon-grey: #f2f2f2;
    --icon-red: #da4453;
    --icon-orange: #f47750;
    --icon-yellow: #fdbc4b;
    --icon-green: #2ecc71;
    --icon-blue: #1e1e1e;
    --icon-violet: #9b59b6
}
