mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-07-13 08:13:00 +02:00
5919fae739
Format all non-generated files with oxfmt via `vp fmt`. Add .oxfmtignore to skip bindings/ and wasm-pack output. Add npm format script and update DEVELOPMENT.md docs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
437 B
TypeScript
19 lines
437 B
TypeScript
import type { Theme } from "@yaakapp/api";
|
|
|
|
export const relaxing: Theme = {
|
|
id: "relaxing",
|
|
label: "Relaxing",
|
|
dark: true,
|
|
base: {
|
|
surface: "hsl(267,33%,17%)",
|
|
text: "hsl(275,49%,92%)",
|
|
primary: "hsl(267,84%,81%)",
|
|
secondary: "hsl(227,35%,80%)",
|
|
info: "hsl(217,92%,76%)",
|
|
success: "hsl(115,54%,76%)",
|
|
notice: "hsl(41,86%,83%)",
|
|
warning: "hsl(23,92%,75%)",
|
|
danger: "hsl(343,81%,75%)",
|
|
},
|
|
};
|