:root {
    --primary: rgb(157, 91, 232, 1);
    --primary-dark: rgb(16, 12, 23, 1);
    --primary-70: rgba(16, 12, 23, 0.7);
    --primary-50: rgba(16, 12, 23, 0.5);
    --primary-30: rgba(16, 12, 23, 0.3);
    --primary-10: rgba(16, 12, 23, 0.1);
    --logo: #000000;
    --sidebar-icon: #faf8ff;
}

.bg-grad-sidebar {

  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgb(16, 12, 23, 1)),
    to(rgb(16, 12, 23, 1))
  );

  background-image: linear-gradient(
    0deg,
    rgb(16, 12, 23, 1),
    rgb(16, 12, 23, 1)
  );
}
