mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-05-19 14:17:23 +02:00
Run oxfmt across repo, add format script and docs
Add .oxfmtignore to skip generated bindings and wasm-pack output. Add npm format script, update DEVELOPMENT.md for Vite+ toolchain, and format all non-generated files with oxfmt. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,43 +1,43 @@
|
||||
import type { Theme } from '@yaakapp/api';
|
||||
import type { Theme } from "@yaakapp/api";
|
||||
|
||||
export const materialOcean: Theme = {
|
||||
id: 'material-ocean',
|
||||
label: 'Material Ocean',
|
||||
id: "material-ocean",
|
||||
label: "Material Ocean",
|
||||
dark: true,
|
||||
base: {
|
||||
surface: 'hsl(230, 25%, 14%)',
|
||||
surfaceHighlight: 'hsl(230, 20%, 18%)',
|
||||
text: 'hsl(220, 53%, 85%)',
|
||||
textSubtle: 'hsl(228, 12%, 54%)',
|
||||
textSubtlest: 'hsl(228, 12%, 42%)',
|
||||
primary: 'hsl(262, 100%, 75%)',
|
||||
secondary: 'hsl(228, 12%, 60%)',
|
||||
info: 'hsl(224, 100%, 75%)',
|
||||
success: 'hsl(84, 60%, 73%)',
|
||||
notice: 'hsl(43, 100%, 70%)',
|
||||
warning: 'hsl(14, 85%, 70%)',
|
||||
danger: 'hsl(1, 77%, 59%)',
|
||||
surface: "hsl(230, 25%, 14%)",
|
||||
surfaceHighlight: "hsl(230, 20%, 18%)",
|
||||
text: "hsl(220, 53%, 85%)",
|
||||
textSubtle: "hsl(228, 12%, 54%)",
|
||||
textSubtlest: "hsl(228, 12%, 42%)",
|
||||
primary: "hsl(262, 100%, 75%)",
|
||||
secondary: "hsl(228, 12%, 60%)",
|
||||
info: "hsl(224, 100%, 75%)",
|
||||
success: "hsl(84, 60%, 73%)",
|
||||
notice: "hsl(43, 100%, 70%)",
|
||||
warning: "hsl(14, 85%, 70%)",
|
||||
danger: "hsl(1, 77%, 59%)",
|
||||
},
|
||||
components: {
|
||||
sidebar: {
|
||||
surface: 'hsl(230, 25%, 12%)',
|
||||
border: 'hsl(230, 20%, 18%)',
|
||||
surface: "hsl(230, 25%, 12%)",
|
||||
border: "hsl(230, 20%, 18%)",
|
||||
},
|
||||
appHeader: {
|
||||
surface: 'hsl(230, 25%, 10%)',
|
||||
border: 'hsl(230, 20%, 16%)',
|
||||
surface: "hsl(230, 25%, 10%)",
|
||||
border: "hsl(230, 20%, 16%)",
|
||||
},
|
||||
responsePane: {
|
||||
surface: 'hsl(230, 25%, 12%)',
|
||||
border: 'hsl(230, 20%, 18%)',
|
||||
surface: "hsl(230, 25%, 12%)",
|
||||
border: "hsl(230, 20%, 18%)",
|
||||
},
|
||||
button: {
|
||||
primary: 'hsl(262, 100%, 68%)',
|
||||
info: 'hsl(224, 100%, 68%)',
|
||||
success: 'hsl(84, 60%, 66%)',
|
||||
notice: 'hsl(43, 100%, 63%)',
|
||||
warning: 'hsl(14, 85%, 63%)',
|
||||
danger: 'hsl(1, 77%, 52%)',
|
||||
primary: "hsl(262, 100%, 68%)",
|
||||
info: "hsl(224, 100%, 68%)",
|
||||
success: "hsl(84, 60%, 66%)",
|
||||
notice: "hsl(43, 100%, 63%)",
|
||||
warning: "hsl(14, 85%, 63%)",
|
||||
danger: "hsl(1, 77%, 52%)",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user