Skip to content

Commit

Permalink
Improve theme
Browse files Browse the repository at this point in the history
  • Loading branch information
SHAcollision committed Jul 10, 2024
1 parent fb62dd0 commit 2f67db1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
40 changes: 21 additions & 19 deletions quartz/quartz.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,30 +22,32 @@ const config: QuartzConfig = {
fontOrigin: "googleFonts",
cdnCaching: true,
typography: {
header: "Schibsted Grotesk",
body: "Source Sans Pro",
code: "IBM Plex Mono",
header: "Poppins",
body: "Lora",
code: "Fira Code",
},
colors: {
lightMode: {
light: "#faf8f8",
lightgray: "#e5e5e5",
gray: "#b8b8b8",
darkgray: "#4e4e4e",
dark: "#2b2b2b",
secondary: "#284b63",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
light: "#ffffff", // White
lightgray: "#f2f2f2", // Very light gray
gray: "#cccccc", // Light gray
darkgray: "#4a4a4a", // Dark gray
dark: "#333333", // Almost black
secondary: "#3498db", // Bright blue
tertiary: "#e74c3c", // Bright red
highlight: "rgba(52, 152, 219, 0.15)", // Light blue highlight
textHighlight: "#f1c40f88", // Yellow text highlight
},
darkMode: {
light: "#161618",
lightgray: "#393639",
gray: "#646464",
darkgray: "#d4d4d4",
dark: "#ebebec",
secondary: "#7b97aa",
tertiary: "#84a59d",
highlight: "rgba(143, 159, 169, 0.15)",
light: "#1e1e1e", // Very dark gray
lightgray: "#2c2c2c", // Darker gray
gray: "#575757", // Medium gray
darkgray: "#d4d4d4", // Light gray
dark: "#ecf0f1", // Very light gray
secondary: "#2980b9", // Darker blue
tertiary: "#c0392b", // Darker red
highlight: "rgba(41, 128, 185, 0.15)", // Dark blue highlight
textHighlight: "#f39c1288", // Orange text highlight
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion quartz/quartz.layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const sharedPageComponents: SharedLayout = {
footer: Component.Footer({
links: {
Synonym: "https://synonym.to",
GitHub: "https://github.com/slashtags/pubky-docs",
GitHub: "https://github.com/pubky/pubky-docs",
"Discord Community": "https://discord.gg/TODO",
},
}),
Expand Down

0 comments on commit 2f67db1

Please sign in to comment.