feat(web): bootstrap cadence ui foundation

This commit is contained in:
2026-03-20 11:22:42 +08:00
parent a7ef1e0154
commit ce9061ca54
35 changed files with 2945 additions and 7 deletions
+36
View File
@@ -0,0 +1,36 @@
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
color-scheme: light;
background: var(--color-background);
}
body {
margin: 0;
min-height: 100vh;
background: var(--color-background);
color: var(--color-foreground);
font-family: var(--font-sans);
font-size: var(--text-base);
line-height: var(--leading-normal);
text-rendering: optimizeLegibility;
}
button,
input,
textarea,
select {
font: inherit;
}
a {
color: inherit;
}
::selection {
background: color-mix(in oklch, var(--color-primary) 24%, transparent);
}