Skip to content

Commit

Permalink
Fix malformed JSON in theme settings (#530)
Browse files Browse the repository at this point in the history
Fix malformed JSON in theme settings due to comma misplacement
  • Loading branch information
gwynne authored Dec 21, 2024
1 parent 045cc49 commit 7c29718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/PostgresNIO/Docs.docc/theme-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
"button": { "border-radius": "16px", "border-width": "1px", "border-style": "solid" },
"code": { "border-radius": "16px", "border-width": "1px", "border-style": "solid" },
"color": {
"fill": { "dark": "#000", "light": "#fff" }
"fill": { "dark": "#000", "light": "#fff" },
"psqlnio": "#336791",
"documentation-intro-fill": "radial-gradient(circle at top, var(--color-psqlnio) 30%, #000 100%)",
"documentation-intro-accent": "var(--color-psqlnio)",
"documentation-intro-eyebrow": "white",
"documentation-intro-figure": "white",
"documentation-intro-title": "white",
"logo-base": { "dark": "#fff", "light": "#000" },
"logo-shape": { "dark": "#000", "light": "#fff" },
"logo-shape": { "dark": "#000", "light": "#fff" }
},
"icons": { "technology": "/postgresnio/images/vapor-postgresnio-logo.svg" }
},
Expand Down

0 comments on commit 7c29718

Please sign in to comment.