diff --git a/docs/styles/globals.css b/docs/styles/globals.css index b5c61c95..7b29270e 100644 --- a/docs/styles/globals.css +++ b/docs/styles/globals.css @@ -1,3 +1,17 @@ @tailwind base; @tailwind components; @tailwind utilities; + +body { + background: linear-gradient(to bottom, + rgba(255, 255, 255, 0) 0%, + rgba(255, 255, 255, 1) 300px), + fixed 0 0 / 20px 20px radial-gradient(#d1d1d1 1px, transparent 0), + fixed 10px 10px / 20px 20px radial-gradient(#d1d1d1 1px, transparent 0); +} + +.dark body { + background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #111 300px), + fixed 0 0 / 20px 20px radial-gradient(#313131 1px, transparent 0), + fixed 10px 10px / 20px 20px radial-gradient(#313131 1px, transparent 0); +} \ No newline at end of file