6f3d02d31cfbe7d82988d1ce604fc671b3b43599
Root cause: --pico-color and --pico-card-background-color were overridden unconditionally at :root, clobbering Pico's dark mode tokens. Light-colored text (#2C2C2C) became invisible against dark card backgrounds (#181c25). Fix: move Pico token overrides under light-mode selectors only. Dark mode now inherits Pico's correct dark palette. --color-label (app-specific var) gets an explicit dark-mode value since Pico doesn't define it.
sv
Everything you need to build a Svelte project, powered by sv.
Creating a project
If you're seeing this, you've probably already done this step. Congrats!
# create a new project
npx sv create my-app
To recreate this project with the same configuration:
# recreate this project
npx sv@0.12.7 create --template minimal --types ts --no-install .
Developing
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Building
To create a production version of your app:
npm run build
You can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.
Description
Languages
Svelte
53.9%
TypeScript
34.1%
CSS
10%
JavaScript
0.9%
Shell
0.6%
Other
0.5%