fui-fancyui
Version:
FancyUI Libary
25 lines (22 loc) • 608 B
JavaScript
import { createGlobalStyle as r } from "styled-components";
import e from "../scrollbar/scrollbar.js";
const l = r`
body {
margin: 0;
padding: 0;
background: ${({ theme: o }) => o.color.primary[0]};
color: ${({ theme: o }) => o.color.secondary[0]};
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
position: relative;
overflow-y: auto;
width: 100%;
&::selection {
background: ${({ theme: o }) => o.color.accent[0]};
color: ${({ theme: o }) => o.color.primary[0]};
}
}
${e};
`;
export {
l as default
};