:root {
  /* bg-color */
  --bg-primary-color: rgb(17, 17, 17);
  --bg-secondary-color: rgb(34, 34, 34);
  --bg-active-color: rgb(233, 233, 233);
  --bg-danger-color: rgb(200, 50, 50);
  --bg-success-color: rgb(30, 167, 30);

  /* text-color */
  --text-primary-color: rgb(238, 238, 238);
  --text-secondary-color: rgb(201, 201, 201);
  --text-tertiary-color: rgb(150, 150, 150);
  --text-active-color: rgb(24, 24, 24);

  /* padding */
  --padding-sm: 0.5rem;
  --padding-md: 1rem;
  --padding-lg: 1.5rem;
  --padding-xl: 2rem;
  --padding-xxl: 3rem;

  /* margin */
  --margin-sm: 0.5rem;
  --margin-md: 1rem;
  --margin-lg: 1.5rem;
  --margin-xl: 2rem;
  --margin-xxl: 3rem;

  /* gutter */
  --gutter-sm: 0.5rem;
  --gutter-md: 1rem;
  --gutter-lg: 1.5rem;
  --gutter-xl: 2rem;
  --gutter-xxl: 3rem;

  /* font Sizes */
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;

  /* border radius */
  --border-radius-sm: 0.2rem;
  --border-radius-md: 0.25rem;
  --border-radius-lg: 0.3rem;
  --border-radius-xl: 0.4rem;
  --border-radius-xxl: 0.5rem;
}
