globals.css

 1@tailwind base;
 2@tailwind components;
 3@tailwind utilities;
 4
 5:root {
 6  --foreground-rgb: 0, 0, 0;
 7  --background-start-rgb: 214, 219, 220;
 8  --background-end-rgb: 255, 255, 255;
 9}
10
11body {
12  color: rgb(var(--foreground-rgb));
13  background: linear-gradient(
14      to bottom,
15      transparent,
16      rgb(var(--background-end-rgb))
17    )
18    rgb(var(--background-start-rgb));
19  font-family: 'Inter', sans-serif;
20}