Summary of the new feature
Currently the colors of session statuses are almost invisible when you are using a light color theme
        let statusIconText = "$(terminal) ";
        let statusColor = "#affc74";
        if (status === SessionStatus.Initializing) {
            statusIconText = "$(sync) ";
            statusColor = "#f3fc74";
        } else if (status === SessionStatus.Failed) {
            statusIconText = "$(alert) ";
            statusColor = "#fcc174";
        }