.theme {
    color: #8B4BF9;
}

a {
    color: #636363;
}

.grey {
    color: #636363;
}

.white {
    color: white;
}

.secondary {
    color: #6EA8EF;
}

.tertiary {
    color: #E24BF9;
}

.white-background {
    background-color: white;
}

.theme-background {
    background-color: #8B4BF9;
}

.theme-light-background {
    background-color: #BB94FF;
}

.secondary-background {
    background-color: #6EA8EF;
}

.tertiary-background {
    background-color: #E24BF9;
}

.theme-light {
    color: #BB94FF;
}

.gradient-light-to-dark {
    background: linear-gradient(180deg, #ffffff 0%, #8E4FF9 100%);
}

.gradient-dark-to-light {
    background: linear-gradient(0deg, #ffffff 0%, #8E4FF9 100%);
}

.gradient-theme-to-theme-light {
    background: linear-gradient(0deg, #8E4FF9 0%, #BB94FF 100%);
}

.gradient-theme-light-to-theme {
    background: linear-gradient(180deg, #8E4FF9 0%, #BB94FF 100%);
}

.gradient-text {
      font-weight: bold;
      background: linear-gradient(to right, #8E4FF9, #E24BF9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

