Skip to content

Commit d4fe060

Browse files
committed
Update default layout styles to enhance visual consistency by modifying color variables for secondary elements and background. Adjust header text color to use the new secondary text color variable.
1 parent 2dfbcf6 commit d4fe060

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

_layouts/default.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@
1414
<style>
1515
:root {
1616
--primary-color: #2c3e50;
17-
--secondary-color: #3498db;
18-
--background-color: #ffffff;
17+
--secondary-color: #226692;
18+
--background-color: #fefefe;
1919
--text-color: #333333;
20+
--secondary-text-color: #fefefe;
2021
--border-color: #e1e8ed;
2122
--code-background: #f8f9fa;
2223
}
@@ -42,7 +43,7 @@
4243

4344
header {
4445
background-color: var(--primary-color);
45-
color: white;
46+
color: var(--secondary-text-color);
4647
padding: 1.5rem 0;
4748
margin-bottom: 1rem;
4849
}
@@ -94,7 +95,6 @@
9495
}
9596

9697
h1, h2, h3, h4, h5, h6 {
97-
color: var(--primary-color);
9898
margin-top: 2rem;
9999
margin-bottom: 1rem;
100100
}

0 commit comments

Comments
 (0)