mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-07-11 15:22:54 +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 noctisAzureus: Theme = {
|
||||
id: 'noctis-azureus',
|
||||
label: 'Noctis Azureus',
|
||||
id: "noctis-azureus",
|
||||
label: "Noctis Azureus",
|
||||
dark: true,
|
||||
base: {
|
||||
surface: 'hsl(210, 35%, 14%)',
|
||||
surfaceHighlight: 'hsl(210, 30%, 19%)',
|
||||
text: 'hsl(180, 45%, 85%)',
|
||||
textSubtle: 'hsl(180, 25%, 60%)',
|
||||
textSubtlest: 'hsl(180, 18%, 45%)',
|
||||
primary: 'hsl(175, 60%, 55%)',
|
||||
secondary: 'hsl(200, 70%, 65%)',
|
||||
info: 'hsl(200, 70%, 65%)',
|
||||
success: 'hsl(85, 55%, 60%)',
|
||||
notice: 'hsl(45, 90%, 60%)',
|
||||
warning: 'hsl(25, 85%, 58%)',
|
||||
danger: 'hsl(355, 75%, 62%)',
|
||||
surface: "hsl(210, 35%, 14%)",
|
||||
surfaceHighlight: "hsl(210, 30%, 19%)",
|
||||
text: "hsl(180, 45%, 85%)",
|
||||
textSubtle: "hsl(180, 25%, 60%)",
|
||||
textSubtlest: "hsl(180, 18%, 45%)",
|
||||
primary: "hsl(175, 60%, 55%)",
|
||||
secondary: "hsl(200, 70%, 65%)",
|
||||
info: "hsl(200, 70%, 65%)",
|
||||
success: "hsl(85, 55%, 60%)",
|
||||
notice: "hsl(45, 90%, 60%)",
|
||||
warning: "hsl(25, 85%, 58%)",
|
||||
danger: "hsl(355, 75%, 62%)",
|
||||
},
|
||||
components: {
|
||||
dialog: {
|
||||
surface: 'hsl(210, 35%, 11%)',
|
||||
surface: "hsl(210, 35%, 11%)",
|
||||
},
|
||||
sidebar: {
|
||||
surface: 'hsl(210, 33%, 12%)',
|
||||
border: 'hsl(210, 30%, 17%)',
|
||||
surface: "hsl(210, 33%, 12%)",
|
||||
border: "hsl(210, 30%, 17%)",
|
||||
},
|
||||
appHeader: {
|
||||
surface: 'hsl(210, 35%, 10%)',
|
||||
border: 'hsl(210, 30%, 15%)',
|
||||
surface: "hsl(210, 35%, 10%)",
|
||||
border: "hsl(210, 30%, 15%)",
|
||||
},
|
||||
responsePane: {
|
||||
surface: 'hsl(210, 33%, 12%)',
|
||||
border: 'hsl(210, 30%, 17%)',
|
||||
surface: "hsl(210, 33%, 12%)",
|
||||
border: "hsl(210, 30%, 17%)",
|
||||
},
|
||||
button: {
|
||||
primary: 'hsl(175, 60%, 48%)',
|
||||
secondary: 'hsl(200, 70%, 58%)',
|
||||
info: 'hsl(200, 70%, 58%)',
|
||||
success: 'hsl(85, 55%, 53%)',
|
||||
notice: 'hsl(45, 90%, 53%)',
|
||||
warning: 'hsl(25, 85%, 51%)',
|
||||
danger: 'hsl(355, 75%, 55%)',
|
||||
primary: "hsl(175, 60%, 48%)",
|
||||
secondary: "hsl(200, 70%, 58%)",
|
||||
info: "hsl(200, 70%, 58%)",
|
||||
success: "hsl(85, 55%, 53%)",
|
||||
notice: "hsl(45, 90%, 53%)",
|
||||
warning: "hsl(25, 85%, 51%)",
|
||||
danger: "hsl(355, 75%, 55%)",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user