Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update colors + Home description #4

Merged
merged 3 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const config: Config = {
},
{
label: 'Discord',
href: 'https://discord.gg/Ju25cw6',
href: 'https://aka.ms/psdiscord',
},
],
},
Expand All @@ -123,6 +123,10 @@ const config: Config = {
label: 'GitHub',
href: 'https://github.com/psake',
},
{
label: 'OpenCollective - Donate!',
href: 'https://opencollective.com/psake',
},
{
html: `
<a href="https://www.netlify.com">
Expand Down
32 changes: 16 additions & 16 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@
* work well for content-centric websites.
*/

/* You can override the default Infima variables here. */
/* Color is charcoal */
:root {
--ifm-color-primary: #2e8555;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
--ifm-color-primary-lighter: #359962;
--ifm-color-primary-lightest: #3cad6e;
--ifm-color-primary: #2a6b32;
--ifm-color-primary-dark: #26602d;
--ifm-color-primary-darker: #245b2a;
--ifm-color-primary-darkest: #1d4b23;
--ifm-color-primary-light: #2e7637;
--ifm-color-primary-lighter: #307b39;
--ifm-color-primary-lightest: #35863e;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
/* Color is olive */
[data-theme='dark'] {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
--ifm-color-primary: #96bc4f;
--ifm-color-primary-dark: #88ae42;
--ifm-color-primary-darker: #81a43f;
--ifm-color-primary-darkest: #6a8734;
--ifm-color-primary-light: #a2c362;
--ifm-color-primary-lighter: #a7c76c;
--ifm-color-primary-lightest: #b9d289;
}
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export default function Home(): JSX.Element {
const { siteConfig } = useDocusaurusContext();
return (
<Layout
title={`Hello from ${siteConfig.title}`}
description="Description will go into a meta tag in <head />">
title={`${siteConfig.title}`}
description="A build automation tool written in PowerShell">
<HomepageHeader />
<main>
<HomepageFeatures />
Expand Down