This repository has no description rinx.fyi
0

Configure Feed

Select the types of activity you want to include in your feed.

zola: add zola.toml and use terminus theme

Signed-off-by: Rintaro Okamura <rintaro.okamura@gmail.com>

author
Rintaro Okamura
date (Jul 6, 2026, 9:54 AM +0900) commit f3d789bc parent 3b6e5088 change-id szmuxkol
+30
+3
.gitmodules
··· 1 + [submodule "themes/terminus"] 2 + path = themes/terminus 3 + url = https://github.com/ebkalderon/terminus.git
+10
sass/custom.scss
··· 1 + :root { 2 + 3 + // 独自のカラースキーム定義 4 + &:has(body[data-theme="my-theme"]) { 5 + --background-color: #ffffff; // 背景色 6 + --text-color: #1a1b26; // 文字色 7 + --accent-color: #658958; // アクセント色(リンクなど) 8 + --footnote-color: rgba(192, 202, 245, 0.6); // 脚注の色 9 + } 10 + }
+17
zola.toml
··· 1 + base_url = "https://rinx.tngl.sh" 2 + title = "~rinx" 3 + description = "my personal blog" 4 + 5 + compile_sass = true 6 + 7 + build_search_index = true 8 + 9 + theme = "terminus" 10 + 11 + [markdown] 12 + [markdown.highlighting] 13 + theme = "catppuccin-mocha" 14 + 15 + [extra] 16 + color_scheme = "my-theme" 17 + stylesheets = ["custom.css"]