File size: 1,600 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { defineGlobalStyles } from "./def"

export const globalCss = defineGlobalStyles({
  "*": {
    fontFeatureSettings: '"cv11"',
    "--ring-inset": "var(--empty,/*!*/ /*!*/)",
    "--ring-offset-width": "0px",
    "--ring-offset-color": "#fff",
    "--ring-color": "rgba(66, 153, 225, 0.6)",
    "--ring-offset-shadow": "0 0 #0000",
    "--ring-shadow": "0 0 #0000",
    "--brightness": "var(--empty,/*!*/ /*!*/)",
    "--contrast": "var(--empty,/*!*/ /*!*/)",
    "--grayscale": "var(--empty,/*!*/ /*!*/)",
    "--hue-rotate": "var(--empty,/*!*/ /*!*/)",
    "--invert": "var(--empty,/*!*/ /*!*/)",
    "--saturate": "var(--empty,/*!*/ /*!*/)",
    "--sepia": "var(--empty,/*!*/ /*!*/)",
    "--drop-shadow": "var(--empty,/*!*/ /*!*/)",
    "--backdrop-blur": "var(--empty,/*!*/ /*!*/)",
    "--backdrop-brightness": "var(--empty,/*!*/ /*!*/)",
    "--backdrop-contrast": "var(--empty,/*!*/ /*!*/)",
    "--backdrop-grayscale": "var(--empty,/*!*/ /*!*/)",
    "--backdrop-hue-rotate": "var(--empty,/*!*/ /*!*/)",
    "--backdrop-invert": "var(--empty,/*!*/ /*!*/)",
    "--backdrop-opacity": "var(--empty,/*!*/ /*!*/)",
    "--backdrop-saturate": "var(--empty,/*!*/ /*!*/)",
    "--backdrop-sepia": "var(--empty,/*!*/ /*!*/)",
    "--global-font-mono": "fonts.mono",
    "--global-font-body": "fonts.body",
    "--global-color-border": "colors.border",
  },
  html: {
    color: "fg",
    bg: "bg",
    lineHeight: "1.5",
    colorPalette: "gray",
  },
  "*::placeholder, *[data-placeholder]": {
    color: "fg.muted/80",
  },
  "*::selection": {
    bg: "colorPalette.emphasized/80",
  },
})