diff --git a/content/page/aboutme/index.md b/content/page/aboutme/index.md index 1c8e146..c633527 100644 --- a/content/page/aboutme/index.md +++ b/content/page/aboutme/index.md @@ -8,6 +8,7 @@ menu: comments: false license: false +readingTime: false --- diff --git a/content/post/site-redesigned-2024/featured-image.png b/content/post/site-redesigned-2024/featured-image.png new file mode 100644 index 0000000..3cb68f6 Binary files /dev/null and b/content/post/site-redesigned-2024/featured-image.png differ diff --git a/content/post/site-redesigned-2024/index.md b/content/post/site-redesigned-2024/index.md new file mode 100644 index 0000000..4d24c7a --- /dev/null +++ b/content/post/site-redesigned-2024/index.md @@ -0,0 +1,22 @@ +--- +title: "Site Redesign: 2024" +date: 2024-03-16T20:10:00-04:00 +lastmod: 2024-03-16T20:10:00-04:00 +draft: false + +description: "'Tis tradition." +image: "featured-image.png" + +tags: ["Website", "Progress Updates"] +# categories: ["general"] + +toc: false +--- + +'Tis tradition. + + + +I have switched themes to [*Hugo Theme Stack*](https://stack.jimmycai.com/) by Jimmy Cai, making the site look lovely as a base instead of needing patches to not look plain. This new base also allows for comments, through GitHub issues to be available at the bottom of every post. The color scheme is also new but I'm not 100% set on the dark mode colors. The font is [*Hasköy*](https://haskoy.ertekinn.com/) by Ertekin Erdin and has been recently used in [Beeper's](https://blog.beeper.com/p/new-beeper-android-app-open-beta) new beta client for Android, which inspired me to use it. I do plan on writing more posts, here are some in no particular order: *Beeper Mini Adventures and Complete Guide*, a Butter Engine update, and an announcement for an upcoming project sometime in the Summer. This redesign started four months ago and was just waiting on custom CSS and fonts, but expect more posts, updates, and projects at the end of April! + +Also, it seems that Forge is no longer favored/is no longer maintained/there was drama that occurred over the ownership of the project that has caused it to be abandoned. I'm willing to accept any pull requests or transfer ownership of Left Click Counter mod to keep it maintained for people and I encourage people to make spin-offs and forks for modern Minecraft versions or other modkits. \ No newline at end of file diff --git a/themes/hugo-theme-stack/assets/scss/variables.scss b/themes/hugo-theme-stack/assets/scss/variables.scss index f21f1ef..5c89292 100644 --- a/themes/hugo-theme-stack/assets/scss/variables.scss +++ b/themes/hugo-theme-stack/assets/scss/variables.scss @@ -22,7 +22,8 @@ $defaultTagColors: #fff, #fff, #fff, #fff, #fff; --section-separation: 40px; - --scrollbar-thumb: hsl(0, 0%, 85%); + //--scrollbar-thumb: hsl(0, 0%, 85%); + --scrollbar-thumb: var(--card-background); --scrollbar-track: var(--body-background); &[data-scheme="dark"] { @@ -31,7 +32,8 @@ $defaultTagColors: #fff, #fff, #fff, #fff, #fff; --accent-color-darker: #3a31d8; --accent-color-text: #fff; --body-text-color: #eae9fc; - --scrollbar-thumb: hsl(0, 0%, 40%); + //--scrollbar-thumb: hsl(0, 0%, 40%); + --scrollbar-thumb: var(--card-background); --scrollbar-track: var(--body-background); } } @@ -56,8 +58,8 @@ $defaultTagColors: #fff, #fff, #fff, #fff, #fff; * Card style */ :root { - --card-background: #dddbff; - --card-background-selected: #eaeaea; + --card-background: #cfcdf0; + --card-background-selected: #dddbff; --card-text-color-main: #040316; --card-text-color-secondary: #747474; @@ -89,7 +91,7 @@ $defaultTagColors: #fff, #fff, #fff, #fff, #fff; // --accent: #0600c2; &[data-scheme="dark"] { - --card-background: #020024; + --card-background: #171530; //020024 --card-background-selected: rgba(255, 255, 255, 0.16); --card-text-color-main: rgba(255, 255, 255, 0.9); --card-text-color-secondary: rgba(255, 255, 255, 0.7);