From 6de33b7ea274924afb70874ad70cfd1fb7f1e70f Mon Sep 17 00:00:00 2001 From: Raphael Gatchalian Date: Tue, 24 Oct 2023 23:56:28 -0700 Subject: [PATCH] More style changes --- src/styles/globals.css | 8 +++++--- tailwind.config.ts | 3 ++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/styles/globals.css b/src/styles/globals.css index e5d8280..92b89d9 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -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); */ \ No newline at end of file diff --git a/tailwind.config.ts b/tailwind.config.ts index 884af61..6e4fd66 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -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'],