feat(vars)!: rename variable `$general` to `$regular`
This commit is contained in:
parent
d8f3f549dc
commit
17631306a8
|
@ -1,5 +1,5 @@
|
||||||
.markdown-body {
|
.markdown-body {
|
||||||
color: var(--xm-c-general);
|
color: var(--xm-c-regular);
|
||||||
font-family: var(--xm-font-display) !important;
|
font-family: var(--xm-font-display) !important;
|
||||||
pre:not(.shiki, .highlight) {
|
pre:not(.shiki, .highlight) {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
transition: border .3s ease-in-out;
|
transition: border .3s ease-in-out;
|
||||||
&:hover {
|
&:hover {
|
||||||
border-bottom: 1px solid var(--xm-c-general);
|
border-bottom: 1px solid var(--xm-c-regular);
|
||||||
}
|
}
|
||||||
code {
|
code {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@mixin container {
|
@mixin container {
|
||||||
max-width: fit-content;
|
max-width: fit-content;
|
||||||
color: var(--xm-c-general);
|
color: var(--xm-c-regular);
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
line-height: 1.75;
|
line-height: 1.75;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
$general: #bbb;
|
$regular: #bbb;
|
||||||
$dark: #ddd;
|
$dark: #ddd;
|
||||||
$darker: #fff;
|
$darker: #fff;
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
$general: #555;
|
$regular: #555;
|
||||||
$dark: #222;
|
$dark: #222;
|
||||||
$darker: #000;
|
$darker: #000;
|
||||||
|
|
Loading…
Reference in New Issue