@ygor-ui/presets
Version:
Panda CSS presets for Ark UI components
29 lines (27 loc) • 646 B
text/typescript
import { defineGlobalStyles } from '@pandacss/dev'
export const globalCss = defineGlobalStyles({
html: {
lineHeight: 1.5,
MozOsxFontSmoothing: 'grayscale',
textRendering: 'optimizeLegibility',
WebkitFontSmoothing: 'antialiased',
WebkitTextSizeAdjust: '100%',
},
body: {
background: 'bg.canvas',
color: 'fg.default',
fontFamily: 'var(--font-body), sans-serif',
_dark: {
colorScheme: 'dark',
},
},
'*, *::before, *::after': {
borderColor: 'border.default',
borderStyle: 'solid',
boxSizing: 'border-box',
},
'*::placeholder': {
opacity: 1,
color: 'fg.subtle',
},
})