feat: full JS-less theme transition, better transition animation between themes, better light theme colors

This commit is contained in:
Oleksandr 2026-02-13 07:46:00 +02:00
parent da6dd0100b
commit c0e0266d45
Signed by: Xanazf
GPG key ID: 821EEC32761AC17C
46 changed files with 4031 additions and 2536 deletions

View file

@ -2,11 +2,11 @@ import { defineCollection, z } from "astro:content";
import { glob } from "astro/loaders";
const guide = defineCollection({
loader: glob({ pattern: "**/*.md", base: "src/guide" }),
schema: z.object({
title: z.string(),
loader: glob({ pattern: "**/*.md", base: "src/guide" }),
schema: z.object({
title: z.string(),
index: z.number(),
}),
}),
});
export const collections = { guide };