Skip to content

Commit 1fd8446

Browse files
feat: Theme overhaul (#13)
* Red color scheme * Update site fonts * Add social icons * Git repo card * Update site logo
1 parent 0bf665a commit 1fd8446

1 file changed

Lines changed: 36 additions & 6 deletions

File tree

zensical.toml

Lines changed: 36 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,17 @@ site_author = "Adam Foflonker"
2222
# Read more: https://zensical.org/docs/setup/basics/#site_url
2323
site_url = "https://dna-intricate.github.io/AdamFoflonker/"
2424

25+
# In order to display a link to the repository of your project as part of your
26+
# documentation, set repo_url in your configuration to the public URL of your repository.
27+
#
28+
# Read more: https://zensical.org/docs/setup/repository/#repository-url
29+
repo_url = "https://github.com/DnA-IntRicate/AdamFoflonker"
30+
31+
# The name to display on the git repo link
32+
#
33+
# Read more: https://zensical.org/docs/setup/repository/#repository-name
34+
repo_name = "DnA-IntRicate/AdamFoflonker"
35+
2536
# The copyright notice appears in the page footer and can contain an HTML
2637
# fragment.
2738
#
@@ -272,23 +283,27 @@ media = "(prefers-color-scheme: dark)"
272283
scheme = "slate"
273284
toggle.icon = "lucide/moon"
274285
toggle.name = "Switch to light mode"
286+
primary = "red"
287+
accent = "red"
275288

276289
# Palette toggle for light mode
277290
[[project.theme.palette]]
278291
media = "(prefers-color-scheme: light)"
279292
scheme = "default"
280293
toggle.icon = "lucide/sun"
281294
toggle.name = "Switch to dark mode"
295+
primary = "red"
296+
accent = "red"
282297

283298
# ----------------------------------------------------------------------------
284299
# In the "font" subsection you can configure the fonts used. By default, fonts
285300
# are loaded from Google Fonts, giving you a wide range of choices from a set
286301
# of suitably licensed fonts. There are options for a normal text font and for
287302
# a monospaced font used in code blocks.
288303
# ----------------------------------------------------------------------------
289-
#[project.theme.font]
290-
#text = "Inter"
291-
#code = "Jetbrains Mono"
304+
[project.theme.font]
305+
text = "Inter"
306+
code = "JetBrains Mono"
292307

293308
# ----------------------------------------------------------------------------
294309
# You can configure your own logo to be shown in the header using the "logo"
@@ -305,16 +320,31 @@ toggle.name = "Switch to dark mode"
305320
# - https://zensical.org/docs/setup/logo-and-icons
306321
# - https://zensical.org/docs/authoring/icons-emojis/#search
307322
# ----------------------------------------------------------------------------
308-
#[project.theme.icon]
309-
#logo = "lucide/smile"
323+
[project.theme.icon]
324+
logo = "lucide/book-marked"
310325
#repo = "lucide/smile"
311326

312327
# ----------------------------------------------------------------------------
313328
# The "extra" section contains miscellaneous settings.
314329
# ----------------------------------------------------------------------------
330+
331+
# GitHub
315332
[[project.extra.social]]
316333
icon = "fontawesome/brands/github"
317-
link = "https://github.com/DnA-IntRicate/AdamFoflonker"
334+
link = "https://github.com/DnA-IntRicate"
335+
# LinkedIn
336+
[[project.extra.social]]
337+
icon = "fontawesome/brands/linkedin"
338+
link = "https://www.linkedin.com/in/adam-foflonker-008017334/"
339+
# Instagram
340+
[[project.extra.social]]
341+
icon = "fontawesome/brands/instagram"
342+
link = "https://www.instagram.com/adamfoflonker/"
343+
# Email
344+
[[project.extra.social]]
345+
icon = "fontawesome/solid/paper-plane"
346+
link = "mailto:adam.foflonker@gmail.com"
318347

348+
# Hide the Zensical generator message
319349
[project.extra]
320350
generator = false

0 commit comments

Comments
 (0)