Skip to content

Commit 2f67db1

Browse files
committed
Improve theme
1 parent fb62dd0 commit 2f67db1

File tree

2 files changed

+22
-20
lines changed

2 files changed

+22
-20
lines changed

quartz/quartz.config.ts

+21-19
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,32 @@ const config: QuartzConfig = {
2222
fontOrigin: "googleFonts",
2323
cdnCaching: true,
2424
typography: {
25-
header: "Schibsted Grotesk",
26-
body: "Source Sans Pro",
27-
code: "IBM Plex Mono",
25+
header: "Poppins",
26+
body: "Lora",
27+
code: "Fira Code",
2828
},
2929
colors: {
3030
lightMode: {
31-
light: "#faf8f8",
32-
lightgray: "#e5e5e5",
33-
gray: "#b8b8b8",
34-
darkgray: "#4e4e4e",
35-
dark: "#2b2b2b",
36-
secondary: "#284b63",
37-
tertiary: "#84a59d",
38-
highlight: "rgba(143, 159, 169, 0.15)",
31+
light: "#ffffff", // White
32+
lightgray: "#f2f2f2", // Very light gray
33+
gray: "#cccccc", // Light gray
34+
darkgray: "#4a4a4a", // Dark gray
35+
dark: "#333333", // Almost black
36+
secondary: "#3498db", // Bright blue
37+
tertiary: "#e74c3c", // Bright red
38+
highlight: "rgba(52, 152, 219, 0.15)", // Light blue highlight
39+
textHighlight: "#f1c40f88", // Yellow text highlight
3940
},
4041
darkMode: {
41-
light: "#161618",
42-
lightgray: "#393639",
43-
gray: "#646464",
44-
darkgray: "#d4d4d4",
45-
dark: "#ebebec",
46-
secondary: "#7b97aa",
47-
tertiary: "#84a59d",
48-
highlight: "rgba(143, 159, 169, 0.15)",
42+
light: "#1e1e1e", // Very dark gray
43+
lightgray: "#2c2c2c", // Darker gray
44+
gray: "#575757", // Medium gray
45+
darkgray: "#d4d4d4", // Light gray
46+
dark: "#ecf0f1", // Very light gray
47+
secondary: "#2980b9", // Darker blue
48+
tertiary: "#c0392b", // Darker red
49+
highlight: "rgba(41, 128, 185, 0.15)", // Dark blue highlight
50+
textHighlight: "#f39c1288", // Orange text highlight
4951
},
5052
},
5153
},

quartz/quartz.layout.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const sharedPageComponents: SharedLayout = {
88
footer: Component.Footer({
99
links: {
1010
Synonym: "https://synonym.to",
11-
GitHub: "https://github.com/slashtags/pubky-docs",
11+
GitHub: "https://github.com/pubky/pubky-docs",
1212
"Discord Community": "https://discord.gg/TODO",
1313
},
1414
}),

0 commit comments

Comments
 (0)