body {
 --text-color: red;
 color: var(--text-color);
}

body {
 --textBlue: blue;
 color: var(--textBlue);
}

body {
 --_margin-top: 1rem;
 margin-top: var(--_margin-top);
}

