Skip to content

Commit

Permalink
feat: Add subtle noise to background
Browse files Browse the repository at this point in the history
  • Loading branch information
LekoArts committed Jan 21, 2024
1 parent ceaa876 commit c63ce4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Binary file added src/assets/noise.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions src/styles/base.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
html {
font-family: var(--body-font);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

body {
background: linear-gradient(0deg, var(--color-11) 0%, var(--color-bg) 25%, var(--color-bg) 75%, var(--color-13) 100%);
background: linear-gradient(0deg, var(--color-11) 0%, var(--color-bg) 25%, var(--color-bg) 75%, var(--color-13) 100%), url('../assets/noise.png');
background-blend-mode: hard-light;
color: rgb(233, 233, 233);
font-size: var(--step-0);
line-height: 1.5;
Expand Down Expand Up @@ -76,7 +79,7 @@ code {

& svg {
display: inline-block;
vertical-align: text-bottom;
vertical-align: middle;
--icon-color: var(--color-3);
}

Expand Down

0 comments on commit c63ce4a

Please sign in to comment.