Skip to content

Commit

Permalink
Merge pull request #50 from deccer/main
Browse files Browse the repository at this point in the history
Fix background color of landing page
  • Loading branch information
deccer authored Dec 18, 2024
2 parents b46877a + e40fe33 commit 6abca37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
--ifm-color-primary-light: #9e47f2;
--ifm-color-primary-lighter: #ab65f5;
--ifm-color-primary-lightest: #c28cf8;
--ifm-color-landing: #white;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(138, 43, 226, 0.1);
}
Expand All @@ -25,6 +26,7 @@
--ifm-color-primary-light: #c1a7e2;
--ifm-color-primary-lighter: #d1b5eb;
--ifm-color-primary-lightest: #e2c8f3;
--ifm-color-landing: #1b1b1d;
--docusaurus-highlighted-code-line-bg: rgba(177, 156, 217, 0.3);
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import styles from './index.module.css';
function HomepageHeader() {
const { siteConfig } = useDocusaurusContext();
return (
<header className={clsx('hero hero--primary', styles.heroBanner)}>
<header className={clsx('--landing', styles.heroBanner)}>
<div className="container">
<Heading as="h1" className="hero__title">
{siteConfig.title}
Expand Down

0 comments on commit 6abca37

Please sign in to comment.