20 lines
312 B
CSS
20 lines
312 B
CSS
:root {
|
|
--theme: 255, 255, 255;
|
|
--entry: 248, 249, 250;
|
|
--primary: 17, 17, 17;
|
|
--secondary: 90, 90, 90;
|
|
--content: 36, 36, 36;
|
|
}
|
|
body {
|
|
background: rgb(var(--theme));
|
|
}
|
|
.main {
|
|
max-width: 820px;
|
|
}
|
|
.profile .profile-title {
|
|
letter-spacing: 0.2px;
|
|
}
|
|
.profile .profile-subtitle {
|
|
opacity: 0.85;
|
|
}
|