37 lines
876 B
CSS
37 lines
876 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #f8f7fc;
|
|
--foreground: #171717;
|
|
--safe-top: env(safe-area-inset-top, 0px);
|
|
--safe-bottom: env(safe-area-inset-bottom, 0px);
|
|
}
|
|
|
|
@theme inline {
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--font-sans: var(--font-geist-sans), ui-sans-serif, system-ui, "PingFang SC",
|
|
"Microsoft YaHei", sans-serif;
|
|
--font-mono: var(--font-geist-mono), ui-monospace, monospace;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: var(--font-sans);
|
|
-webkit-tap-highlight-color: transparent;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.text-gradient {
|
|
background: linear-gradient(135deg, #7c3aed 0%, #0891b2 100%);
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|