|
@@ -1,9 +1,41 @@
|
|
|
+:root {
|
|
|
+ --background-color: #ffffff;
|
|
|
+ --secondary-background-color: #f0f0f0;
|
|
|
+ --text-color: #474747;
|
|
|
+ --primary-text-color: #474747;
|
|
|
+ --secondary-text-color: #6c757d;
|
|
|
+ --muted-text-color: #999;
|
|
|
+ --highlight-text-color: #dc3545;
|
|
|
+ --link-color: blue;
|
|
|
+ --success-color: #28a745;
|
|
|
+ --warning-color: #ffc107;
|
|
|
+ --danger-color: #dc3545;
|
|
|
+ --info-color: #17a2b8;
|
|
|
+}
|
|
|
+
|
|
|
+@media (prefers-color-scheme: dark) {
|
|
|
+ :root {
|
|
|
+ --background-color: #343a40;
|
|
|
+ --secondary-background-color: #495057;
|
|
|
+ --text-color: #f8f9fa;
|
|
|
+ --primary-text-color: #f8f9fa;
|
|
|
+ --secondary-text-color: #adb5bd;
|
|
|
+ --muted-text-color: #6c757d;
|
|
|
+ --highlight-text-color: #ff6b6b;
|
|
|
+ --link-color: #66d9ef;
|
|
|
+ --success-color: #4caf50;
|
|
|
+ --warning-color: #ffd700;
|
|
|
+ --danger-color: #ff6b6b;
|
|
|
+ --info-color: #1abc9c;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
body {
|
|
|
margin: 0;
|
|
|
font-size: 16px;
|
|
|
box-sizing: border-box;
|
|
|
- background: #f0f0f0;
|
|
|
- color: #474747;
|
|
|
+ background: var(--secondary-background-color);
|
|
|
+ color: var(--primary-text-color);
|
|
|
}
|
|
|
|
|
|
p, h1, h2, h3, h4, h5, h6, blockquote, ul, ol, li, pre, code {
|
|
@@ -13,7 +45,7 @@ p, h1, h2, h3, h4, h5, h6, blockquote, ul, ol, li, pre, code {
|
|
|
|
|
|
a {
|
|
|
text-decoration: none;
|
|
|
- color: blue;
|
|
|
+ color: var(--link-color);
|
|
|
}
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
@@ -75,7 +107,7 @@ a {
|
|
|
width: 200px;
|
|
|
align-self: flex-start;
|
|
|
height: max-content;
|
|
|
- background: #fff;
|
|
|
+ background: var(--background-color);
|
|
|
padding: 20px;
|
|
|
border-radius: 12px;
|
|
|
transition: all .3s;
|
|
@@ -88,7 +120,7 @@ a {
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
|
margin-bottom: 20px;
|
|
|
- background: #f0f0f0;
|
|
|
+ background: var(--secondary-background-color);
|
|
|
padding: 20px;
|
|
|
line-height: 25px;
|
|
|
border-radius: 12px;
|
|
@@ -100,7 +132,7 @@ a {
|
|
|
height: 100px;
|
|
|
border-radius: 50%;
|
|
|
margin-bottom: 10px;
|
|
|
- background: #fff;
|
|
|
+ background: var(--background-color);
|
|
|
transition: all .3s;
|
|
|
}
|
|
|
|
|
@@ -133,7 +165,7 @@ a {
|
|
|
.post-item {
|
|
|
margin-bottom: 20px;
|
|
|
padding: 30px;
|
|
|
- background: #fff;
|
|
|
+ background: var(--background-color);
|
|
|
line-height: 30px;
|
|
|
border-radius: 12px;
|
|
|
}
|
|
@@ -185,7 +217,7 @@ a {
|
|
|
.footer {
|
|
|
padding: 20px;
|
|
|
margin: 20px 0;
|
|
|
- background: #fff;
|
|
|
+ background: var(--background-color);
|
|
|
border-radius: 12px;
|
|
|
}
|
|
|
|
|
@@ -256,5 +288,5 @@ a {
|
|
|
.footer {
|
|
|
border-radius: 0;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|