From 6c065db8ced4b72713ead2ae5042c26957f7d65a Mon Sep 17 00:00:00 2001 From: Markus Graf Date: Sun, 29 Mar 2026 11:03:20 +0200 Subject: [PATCH] chore(01-01): apply biome formatting to CSS and test imports Co-Authored-By: Claude Opus 4.6 (1M context) --- src/storage/db.test.ts | 4 ++-- src/styles/main.css | 38 +++++++++++++++++++------------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/storage/db.test.ts b/src/storage/db.test.ts index 9704079..d879137 100644 --- a/src/storage/db.test.ts +++ b/src/storage/db.test.ts @@ -1,7 +1,7 @@ import "fake-indexeddb/auto"; -import { describe, expect, it, beforeEach } from "vitest"; -import { openDB, getProgress, saveProgress, getSettings, saveSettings } from "./db"; +import { beforeEach, describe, expect, it } from "vitest"; import type { Progress, Settings } from "../types"; +import { getProgress, getSettings, openDB, saveProgress, saveSettings } from "./db"; let testCounter = 0; diff --git a/src/styles/main.css b/src/styles/main.css index 9b19b69..66edc0c 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -2,27 +2,27 @@ :root { /* Grundpalette — warm, einladend, Waldstimmung */ - --bg-cream: #FFF8F0; - --bg-forest: #E8F5E4; - --text-dark: #3D3225; - --text-warm: #5C4A3A; - --text-light: #8B7D6B; - --accent-green: #6DB87D; - --accent-gold: #E8B84B; - --accent-pink: #E88BAE; - --accent-purple: #9B7DC4; - --accent-blue: #7DB8D4; + --bg-cream: #fff8f0; + --bg-forest: #e8f5e4; + --text-dark: #3d3225; + --text-warm: #5c4a3a; + --text-light: #8b7d6b; + --accent-green: #6db87d; + --accent-gold: #e8b84b; + --accent-pink: #e88bae; + --accent-purple: #9b7dc4; + --accent-blue: #7db8d4; /* Fingerfarben — weiche Pastelltoene */ - --finger-l-pinky: #E8B4C8; - --finger-l-ring: #C4A8D4; - --finger-l-mid: #A8C4E0; - --finger-l-index: #A8D8B8; - --finger-r-index: #D4D8A8; - --finger-r-mid: #E0C4A8; - --finger-r-ring: #D4A8A8; - --finger-r-pinky: #C8B4E8; - --finger-thumb: #D4CFC8; + --finger-l-pinky: #e8b4c8; + --finger-l-ring: #c4a8d4; + --finger-l-mid: #a8c4e0; + --finger-l-index: #a8d8b8; + --finger-r-index: #d4d8a8; + --finger-r-mid: #e0c4a8; + --finger-r-ring: #d4a8a8; + --finger-r-pinky: #c8b4e8; + --finger-thumb: #d4cfc8; } /* Base styles */