ps2.live-old/app/globalStyles.ts
2023-02-01 19:17:41 -05:00

11 lines
318 B
TypeScript

import { styled } from "styletron-react";
export const Body = styled("body", {
backgroundImage:
"radial-gradient(ellipse at bottom right, #1b2735 0%,#090a0f 100%)",
backgroundSize: "cover",
backgroundAttachment: "fixed",
color: "#fff",
lineHeight: 1.6,
fontFamily: "Inter, system-ui, sans-serif",
});