20 lines
277 B
CSS
20 lines
277 B
CSS
:root {
|
|
--primary: #b7fd49;
|
|
--secondary: #f8e05b;
|
|
--tertiary: #f788fe;
|
|
--links: #5eb2ff;
|
|
}
|
|
|
|
.col-primary {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.col-secondary {
|
|
color: var(--secondary);
|
|
}
|
|
|
|
.col-tertiary {
|
|
color: var(--tertiary);
|
|
}
|
|
|