Files
reflector/app/globals.scss
2023-07-21 07:13:21 -05:00

27 lines
475 B
SCSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
}
body {
background: linear-gradient(
to bottom,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));
font-family: "Roboto", sans-serif;
color: var(--foreground-rgb);
}
.temp-transcription {
background: beige;
border-radius: 5px;
}