diff --git a/config.yaml b/config.yaml index 4806db3..4a284d5 100644 --- a/config.yaml +++ b/config.yaml @@ -32,3 +32,7 @@ outputFormats: RSS: mediatype: "application/rss" baseName: "rss" + +markup: + highlight: + style: catppuccin-latte diff --git a/content/post/2024-01-21-wine-dualsense.md b/content/post/2024-01-21-wine-dualsense.md index 6e2844f..4acdefd 100644 --- a/content/post/2024-01-21-wine-dualsense.md +++ b/content/post/2024-01-21-wine-dualsense.md @@ -34,7 +34,7 @@ The main issue is that the PS5 controller uses its audio device for haptics (bac Under Fedora 39's default config, the audio session manager is WirePlumber for PipeWire. So, in `~/.config/wireplumber/main.lua.d/60-dualsense.lua`, we can create a custom rule: -``` +```lua rule = { matches = { { diff --git a/static/style.css b/static/style.css index c77a356..e6bc701 100644 --- a/static/style.css +++ b/static/style.css @@ -48,9 +48,13 @@ li { pre, code, pre code span { - background-color: #e6e6e6 !important; + color: #4c4f69; + background-color: #eff1f5 !important; font-family: "Fantasque Sans Mono", Monaco, Menlo, monospace; } +pre code > span { + padding: 0.1rem 0; +} code { padding: 0.15rem 0.35rem; @@ -333,9 +337,7 @@ blockquote { pre, code, pre code span { - background-color: #323232 !important; - } - pre, code { - color: white; + color: #e1dbfd; + background-color: #090e15 !important; } }