:root {
    --primary: rgb(125, 30, 23);
    --primary-dark: #671913;
    --primary-70: rgba(125, 30, 23, 0.7);
    --primary-50: rgba(125, 30, 23, 0.5);
    --primary-30: rgba(125, 30, 23, 0.3);
    --primary-10: rgba(125, 30, 23, 0.1);
    --logo: #2b0a08;
    --logo: #fff;
    --sidebar-icon: #efada9;
  }

  .bg-grad-sidebar {
    background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(#671913),
      to(#410f0c)
    );

    background-image: linear-gradient(
      0deg,
      #671913,
      #410f0c
    );
  }
