From ee9beb930ce228223626b59e71b70cb4d116bb56 Mon Sep 17 00:00:00 2001 From: Vordgi Date: Sun, 13 Oct 2024 18:16:54 +0400 Subject: [PATCH] rd-302 add theme to example --- examples/nextjs-conributing/src/app/globals.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/examples/nextjs-conributing/src/app/globals.css b/examples/nextjs-conributing/src/app/globals.css index e69de29b..494f3f29 100644 --- a/examples/nextjs-conributing/src/app/globals.css +++ b/examples/nextjs-conributing/src/app/globals.css @@ -0,0 +1,13 @@ +:root { + --accent50: #eff6ff; + --accent100: #dbeafe; + --accent200: #bfdbfe; + --accent300: #93c5fd; + --accent400: #60a5fa; + --accent500: #3b82f6; + --accent600: #2563eb; + --accent700: #1d4ed8; + --accent800: #1e40af; + --accent900: #1e3a8a; + --accent950: #172554; +}