Skip to content

Commit

Permalink
More style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaeling committed Oct 25, 2023
1 parent c6cd8cb commit 6de33b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 5 additions & 3 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@
}

body {
background: rgba(24, 31, 3, 0);
/* background: rgba(23, 26, 13, 0); theme(colors.darkest); */
background-image: radial-gradient(rgba(70, 79, 35, 0.3) 1px, transparent 0);
background-size: 30px 30px;
background-position: -19px -19px;
}

html {
background: theme(colors.darkest);
background: radial-gradient(circle at 10% 35%, rgba(47, 56, 12, 0.95) 0%, theme(colors.darkest) 40%);
/* background: theme(colors.darkest); */
background: radial-gradient(circle at 100px 350px, theme(colors.darker) 0%, theme(colors.darkest) 40%);
background-attachment: fixed;
}

/* rgb(21, 23, 14); */
3 changes: 2 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ const config: Config = {
'lighter': 'rgb(202, 217, 144)',
'light': 'rgb(140, 152, 94)',
'dark': 'rgb(70, 79, 35)',
'darkest': 'rgb(24, 31, 3)',
'darker': 'rgb(34, 42, 2)',
'darkest': 'rgb(23, 26, 13)',
},
fontFamily: {
display: ['var(--font-mono)', 'Roboto Mono', 'Courier New', 'monospace'],
Expand Down

0 comments on commit 6de33b7

Please sign in to comment.