:root { --defaultColor: #333; --backgroundColor: #fff; --shadowColor: rgba(0, 0, 0, 0.25); --successColor: #1c7; --warningColor: #fa0; --errorColor: #f52; } .base { box-sizing: border-box; } .container { color: var(--defaultColor); background-color: var(--backgroundColor); } .rounded { border-radius: 6px; } .depth { box-shadow: 0px 1px 2px 0px var(--shadowColor); }