From 4d16c10f6be79d2b06bfc850a4a0da447e8fd8b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20Cora=C3=A7=C3=A3o?= Date: Thu, 5 Jan 2023 21:30:49 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=92=84=20improve=20to=20codeblocks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/css/compiled/main.css | 4 ++-- tailwind.config.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/css/compiled/main.css b/assets/css/compiled/main.css index 88cda2d4..5b6eaf8d 100644 --- a/assets/css/compiled/main.css +++ b/assets/css/compiled/main.css @@ -885,7 +885,7 @@ select { color: var(--tw-prose-code); font-weight: 600; font-size: 0.875em; - background-color: rgba(var(--color-secondary-200), 1); + background-color: rgba(var(--color-neutral-50), 1); padding-top: 3px; padding-bottom: 3px; padding-left: 5px; @@ -3352,7 +3352,7 @@ body:has(#menu-controller:checked) { } .dark .dark\:prose-invert :where(code):not(:where([class~="not-prose"] *)) { - background-color: rgba(var(--color-secondary-800), 1); + background-color: rgba(var(--color-neutral-700), 1); } .dark .dark\:text-neutral-500 { diff --git a/tailwind.config.js b/tailwind.config.js index 2fddecd8..53ac2ef1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -118,7 +118,7 @@ module.exports = { borderRadius: "0.12rem", }, code:{ - backgroundColor: theme("colors.secondary.200 / 1"), + backgroundColor: theme("colors.neutral.50 / 1"), paddingTop: "3px", paddingBottom: "3px", paddingLeft: "5px", @@ -151,7 +151,7 @@ module.exports = { backgroundColor: theme("colors.secondary.400 / 1"), }, code:{ - backgroundColor: theme("colors.secondary.800 / 1"), + backgroundColor: theme("colors.neutral.700 / 1"), }, }, }, From da65a28d47a9fedbe57cb28d53ab3b177c5f1fcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20Cora=C3=A7=C3=A3o?= Date: Thu, 5 Jan 2023 21:31:40 +0000 Subject: [PATCH 2/2] :bookmark: updated theme version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6489a683..72afbbd0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hugo-blowfish-theme", - "version": "2.23.0", + "version": "2.23.1", "description": "Blowfish theme for Hugo", "scripts": { "fullinstall": "npm run preinstall && npm install && npm run postinstall",