.theme-selector__inner {
    height: 100%;
}
.theme-selector__items {
    display: flex;
    flex-direction: row;
    height: 100%;
}
.theme-selector__item {
    flex: 1;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.theme-selector__item-icon {
    opacity: .5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-selector__item.current {
    display: flex;
}
.theme-selector__item.current .theme-selector__item-icon {
    opacity: 1;
}
.theme-selector:hover .theme-selector__item-icon {
    opacity: 1;
}