From 1116a9ad2ce55e85683aa3d967d36c237799009d Mon Sep 17 00:00:00 2001 From: Szymon P Date: Tue, 6 Jan 2026 16:49:21 +0100 Subject: [PATCH 1/2] added cattpuccin color palette --- style/style.css | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/style/style.css b/style/style.css index aab7d1d..6d74934 100644 --- a/style/style.css +++ b/style/style.css @@ -1,20 +1,11 @@ +/* use catppuccin color palette */ +@import url('https://unpkg.com/@catppuccin/palette/css/catppuccin.css'); + :root { color-scheme: light dark; - - --light-bg: ghostwhite; - --light-color: darkslategray; - --light-code: tomato; - - --dark-bg: darkslategray; - --dark-color: ghostwhite; - --dark-code: gold; } * { - background-color: light-dark(var(--light-bg), var(--dark-bg)); - color: light-dark(var(--light-color), var(--dark-color)); -} - -code { - color: light-dark(var(--light-code), var(--dark-code)); + background-color: light-dark(var(--ctp-latte-base), var(--ctp-frappe-base)); + color: light-dark(var(--ctp-latte-text), var(--ctp-frappe-text)); } From 210f3ec04b27e2adb3e471f877c1b86ad6668537 Mon Sep 17 00:00:00 2001 From: Szymon P Date: Thu, 8 Jan 2026 11:18:45 +0100 Subject: [PATCH 2/2] updated templates --- templates/head.html | 6 ++++++ templates/header.html | 3 +++ templates/index.html | 17 +++-------------- 3 files changed, 12 insertions(+), 14 deletions(-) create mode 100644 templates/head.html create mode 100644 templates/header.html diff --git a/templates/head.html b/templates/head.html new file mode 100644 index 0000000..0279b7d --- /dev/null +++ b/templates/head.html @@ -0,0 +1,6 @@ + + + + {{title}} + + diff --git a/templates/header.html b/templates/header.html new file mode 100644 index 0000000..6917d1f --- /dev/null +++ b/templates/header.html @@ -0,0 +1,3 @@ +
+

{{title}}

+
diff --git a/templates/index.html b/templates/index.html index 5d21e41..aed8988 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,23 +1,12 @@ - - - - {{title}} - - +{{head}} -
-

{{title}}

-
- - + {{header}}
    - + {{posts}}