Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
110 lines
2.2 KiB
CSS
110 lines
2.2 KiB
CSS
:root {
|
|
--max-width: 1100px;
|
|
--border-radius: 12px;
|
|
--font-mono:
|
|
ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
|
|
"Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
|
|
"Fira Mono", "Droid Sans Mono", "Courier New", monospace;
|
|
|
|
--foreground-rgb: 0, 0, 0;
|
|
--background-start-rgb: 214, 219, 220;
|
|
--background-end-rgb: 255, 255, 255;
|
|
|
|
--primary-glow: conic-gradient(
|
|
from 180deg at 50% 50%,
|
|
#16abff33 0deg,
|
|
#0885ff33 55deg,
|
|
#54d6ff33 120deg,
|
|
#0071ff33 160deg,
|
|
transparent 360deg
|
|
);
|
|
--secondary-glow: radial-gradient(
|
|
rgba(255, 255, 255, 1),
|
|
rgba(255, 255, 255, 0)
|
|
);
|
|
|
|
--tile-start-rgb: 239, 245, 249;
|
|
--tile-end-rgb: 228, 232, 233;
|
|
--tile-border: conic-gradient(
|
|
#00000080,
|
|
#00000040,
|
|
#00000030,
|
|
#00000020,
|
|
#00000010,
|
|
#00000010,
|
|
#00000080
|
|
);
|
|
|
|
--callout-rgb: 238, 240, 241;
|
|
--callout-border-rgb: 172, 175, 176;
|
|
--card-rgb: 180, 185, 188;
|
|
--card-border-rgb: 131, 134, 135;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--foreground-rgb: 255, 255, 255;
|
|
--background-start-rgb: 0, 0, 0;
|
|
--background-end-rgb: 0, 0, 0;
|
|
|
|
--primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0));
|
|
--secondary-glow: linear-gradient(
|
|
to bottom right,
|
|
rgba(1, 65, 255, 0),
|
|
rgba(1, 65, 255, 0),
|
|
rgba(1, 65, 255, 0.3)
|
|
);
|
|
|
|
--tile-start-rgb: 2, 13, 46;
|
|
--tile-end-rgb: 2, 5, 19;
|
|
--tile-border: conic-gradient(
|
|
#ffffff80,
|
|
#ffffff40,
|
|
#ffffff30,
|
|
#ffffff20,
|
|
#ffffff10,
|
|
#ffffff10,
|
|
#ffffff80
|
|
);
|
|
|
|
--callout-rgb: 20, 20, 20;
|
|
--callout-border-rgb: 108, 108, 108;
|
|
--card-rgb: 100, 100, 100;
|
|
--card-border-rgb: 200, 200, 200;
|
|
}
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
max-width: 100vw;
|
|
overflow-x: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
color: rgb(var(--foreground-rgb));
|
|
background: linear-gradient(
|
|
to bottom,
|
|
transparent,
|
|
rgb(var(--background-end-rgb))
|
|
)
|
|
rgb(var(--background-start-rgb));
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
color-scheme: dark;
|
|
}
|
|
}
|