:root {
  --background-color: rgb(28, 28, 28);
  --text-color: #eeeeee;
  --primary-color: rgb(44, 44, 44);
  --secondary-color: rgb(66, 66, 66);

  --comment-color: rgb(165, 165, 165);
  --theme-color-1: white;
  --theme-color-2: white;
  --theme-color-3: white;
  --theme-color-4: white;
  --theme-color-5: white;
  --theme-color-6: white;
}

.c1 {
    color: var(--theme-color-1);
}
.c2 {
    color: var(--theme-color-2);
}
.c3 {
    color: var(--theme-color-3);
}
.c4 {
    color: var(--theme-color-4);
}
.c5 {
    color: var(--theme-color-5);
}
.c6 {
    color: var(--theme-color-6);
}

.comment {
    color: var(--comment-color);
}