Adjust theme colors

This commit is contained in:
Marc Rousavy
2021-03-04 18:14:07 +01:00
parent 8fe208645a
commit ac5b0e19af
4 changed files with 18 additions and 9 deletions

View File

@@ -65,7 +65,7 @@ function Home() {
<div className={styles.buttons}>
<Link
className={clsx(
'button button--outline button--secondary button--lg',
'button button--outline button--lg',
styles.getStarted,
)}
to={useBaseUrl('docs/')}>

View File

@@ -34,3 +34,12 @@
.featureImage {
width: 200px;
}
.getStarted {
background-color: white;
color: rgb(63, 72, 67);
}
.getStarted:hover {
background-color: #eeeeee;
color: rgb(95, 102, 96);
}