mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-05-20 06:37:33 +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,47 +1,47 @@
|
||||
import type { Theme } from '@yaakapp/api';
|
||||
import type { Theme } from "@yaakapp/api";
|
||||
|
||||
export const atomOneDark: Theme = {
|
||||
id: 'atom-one-dark',
|
||||
label: 'Atom One Dark',
|
||||
id: "atom-one-dark",
|
||||
label: "Atom One Dark",
|
||||
dark: true,
|
||||
base: {
|
||||
surface: 'hsl(220, 13%, 18%)',
|
||||
surfaceHighlight: 'hsl(219, 13%, 22%)',
|
||||
text: 'hsl(219, 14%, 71%)',
|
||||
textSubtle: 'hsl(220, 9%, 55%)',
|
||||
textSubtlest: 'hsl(220, 8%, 45%)',
|
||||
primary: 'hsl(286, 60%, 67%)',
|
||||
secondary: 'hsl(220, 9%, 55%)',
|
||||
info: 'hsl(207, 82%, 66%)',
|
||||
success: 'hsl(95, 38%, 62%)',
|
||||
notice: 'hsl(39, 67%, 69%)',
|
||||
warning: 'hsl(29, 54%, 61%)',
|
||||
danger: 'hsl(355, 65%, 65%)',
|
||||
surface: "hsl(220, 13%, 18%)",
|
||||
surfaceHighlight: "hsl(219, 13%, 22%)",
|
||||
text: "hsl(219, 14%, 71%)",
|
||||
textSubtle: "hsl(220, 9%, 55%)",
|
||||
textSubtlest: "hsl(220, 8%, 45%)",
|
||||
primary: "hsl(286, 60%, 67%)",
|
||||
secondary: "hsl(220, 9%, 55%)",
|
||||
info: "hsl(207, 82%, 66%)",
|
||||
success: "hsl(95, 38%, 62%)",
|
||||
notice: "hsl(39, 67%, 69%)",
|
||||
warning: "hsl(29, 54%, 61%)",
|
||||
danger: "hsl(355, 65%, 65%)",
|
||||
},
|
||||
components: {
|
||||
dialog: {
|
||||
surface: 'hsl(220, 13%, 14%)',
|
||||
surface: "hsl(220, 13%, 14%)",
|
||||
},
|
||||
sidebar: {
|
||||
surface: 'hsl(220, 13%, 16%)',
|
||||
border: 'hsl(220, 13%, 20%)',
|
||||
surface: "hsl(220, 13%, 16%)",
|
||||
border: "hsl(220, 13%, 20%)",
|
||||
},
|
||||
appHeader: {
|
||||
surface: 'hsl(220, 13%, 12%)',
|
||||
border: 'hsl(220, 13%, 18%)',
|
||||
surface: "hsl(220, 13%, 12%)",
|
||||
border: "hsl(220, 13%, 18%)",
|
||||
},
|
||||
responsePane: {
|
||||
surface: 'hsl(220, 13%, 16%)',
|
||||
border: 'hsl(220, 13%, 20%)',
|
||||
surface: "hsl(220, 13%, 16%)",
|
||||
border: "hsl(220, 13%, 20%)",
|
||||
},
|
||||
button: {
|
||||
primary: 'hsl(286, 60%, 60%)',
|
||||
secondary: 'hsl(220, 9%, 48%)',
|
||||
info: 'hsl(207, 82%, 59%)',
|
||||
success: 'hsl(95, 38%, 55%)',
|
||||
notice: 'hsl(39, 67%, 62%)',
|
||||
warning: 'hsl(29, 54%, 54%)',
|
||||
danger: 'hsl(355, 65%, 58%)',
|
||||
primary: "hsl(286, 60%, 60%)",
|
||||
secondary: "hsl(220, 9%, 48%)",
|
||||
info: "hsl(207, 82%, 59%)",
|
||||
success: "hsl(95, 38%, 55%)",
|
||||
notice: "hsl(39, 67%, 62%)",
|
||||
warning: "hsl(29, 54%, 54%)",
|
||||
danger: "hsl(355, 65%, 58%)",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user