Skip to content

Commit

Permalink
change a few colors
Browse files Browse the repository at this point in the history
  • Loading branch information
agavra committed Aug 7, 2024
1 parent e972817 commit d441d3d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
16 changes: 10 additions & 6 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,31 +53,35 @@
}

.button-primary {
color: black;
color: white;
padding: .25rem 1rem;
background-color: white;
background-color: black;
font-size: .875rem;
line-height: 1.25rem;
border-radius: 1rem;
border-width: 2px;
border-style: solid;
}

.button-primary:hover {
background-color: var(--color-accent-1);
color: black;
color: white;
border-color: var(--color-accent-1);
}

.button-accent {
color: black;
padding: .25rem 1rem;
background-color: var(--color-accent-2);
background-color: var(--color-accent-1);
font-size: .875rem;
line-height: 1.25rem;
border-radius: 1rem;
border-style: solid;
border-width: 2px;
}

.button-accent:hover {
color: black;
background-color: var(--color-accent-1);
background-color: white;
}

.clean-btn {
Expand Down
3 changes: 2 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ function HomepageHeader() {
</Heading>
<p>
Unlike traditional LSM-tree storage engines, SlateDB writes data to object storage to
provide bottomless storage capacity, high durability, and easy replication.
provide <span className={'font-bold text-accent-1'}>bottomless storage capacity,
high durability, and easy replication</span>.
</p>
<div className={'flex gap-4'}>
<a href={'#get-started'}
Expand Down

0 comments on commit d441d3d

Please sign in to comment.