Skip to content

Commit

Permalink
chore: Update footer and homepage header colors
Browse files Browse the repository at this point in the history
  • Loading branch information
daGscheid committed Jun 26, 2024
1 parent fe4cb75 commit 1173a88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
--ifm-color-primary-lightest: #d6e4dc;
--ifm-background-color: #494949;
--ifm-footer-background-color: #336666;
--ifm-footer-color: #000000;
--ifm-footer-link-color: #000000;
--ifm-footer-color: #ffffff;
--ifm-footer-link-color: #ffffff;
}
8 changes: 4 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import styles from './index.module.css';
function HomepageHeader() {
const {siteConfig} = useDocusaurusContext();
return (
<header style={{ backgroundColor: '#336666' }} className={clsx('hero hero--primary', styles.heroBanner)}>
<div className="container">
<Heading as="h1" className="hero__title">
<header style={{ backgroundColor: '#336666'}} className={clsx('hero hero--primary', styles.heroBanner)}>
<div className="container">
<Heading as="h1" className="hero__title" style={{ color: '#ffffff' }}>
🍄 Stereum
</Heading>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<p className="hero__subtitle" style={{ color: '#ffffff' }}>{siteConfig.tagline}</p>
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
Expand Down

0 comments on commit 1173a88

Please sign in to comment.