devglide 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +338 -0
- package/bin/claude-md-template.js +94 -0
- package/bin/devglide.js +387 -0
- package/package.json +85 -0
- package/pnpm-workspace.yaml +3 -0
- package/src/apps/coder/.turbo/turbo-lint.log +5 -0
- package/src/apps/coder/package.json +16 -0
- package/src/apps/coder/public/favicon.svg +7 -0
- package/src/apps/coder/public/page.css +275 -0
- package/src/apps/coder/public/page.js +528 -0
- package/src/apps/coder/server.js +3 -0
- package/src/apps/documentation/public/page.css +597 -0
- package/src/apps/documentation/public/page.js +609 -0
- package/src/apps/kanban/.turbo/turbo-lint.log +97 -0
- package/src/apps/kanban/.turbo/turbo-typecheck.log +5 -0
- package/src/apps/kanban/package.json +32 -0
- package/src/apps/kanban/public/favicon.svg +7 -0
- package/src/apps/kanban/public/page.css +1010 -0
- package/src/apps/kanban/public/page.js +1730 -0
- package/src/apps/kanban/public/vendor/marked.min.js +6 -0
- package/src/apps/kanban/public/vendor/sortable.min.js +2 -0
- package/src/apps/kanban/src/db.ts +319 -0
- package/src/apps/kanban/src/index.ts +14 -0
- package/src/apps/kanban/src/mcp-helpers.test.ts +88 -0
- package/src/apps/kanban/src/mcp-helpers.ts +60 -0
- package/src/apps/kanban/src/mcp.ts +59 -0
- package/src/apps/kanban/src/routes/attachments.ts +161 -0
- package/src/apps/kanban/src/routes/features.ts +233 -0
- package/src/apps/kanban/src/routes/issues.ts +373 -0
- package/src/apps/kanban/src/tools/feature-tools.ts +164 -0
- package/src/apps/kanban/src/tools/item-tools.ts +307 -0
- package/src/apps/kanban/src/tools/versioned-entry-tools.ts +72 -0
- package/src/apps/kanban/tsconfig.check.json +9 -0
- package/src/apps/kanban/tsconfig.json +9 -0
- package/src/apps/keymap/.turbo/turbo-lint.log +5 -0
- package/src/apps/keymap/package.json +16 -0
- package/src/apps/keymap/public/page.css +275 -0
- package/src/apps/keymap/public/page.js +294 -0
- package/src/apps/keymap/server.js +25 -0
- package/src/apps/log/.turbo/turbo-build.log +5 -0
- package/src/apps/log/.turbo/turbo-lint.log +45 -0
- package/src/apps/log/.turbo/turbo-typecheck.log +5 -0
- package/src/apps/log/node_modules/.bin/tsc +21 -0
- package/src/apps/log/node_modules/.bin/tsserver +21 -0
- package/src/apps/log/node_modules/.bin/tsx +21 -0
- package/src/apps/log/package.json +36 -0
- package/src/apps/log/public/console-sniffer.js +221 -0
- package/src/apps/log/public/favicon.svg +7 -0
- package/src/apps/log/public/page.css +322 -0
- package/src/apps/log/public/page.js +463 -0
- package/src/apps/log/src/index.ts +9 -0
- package/src/apps/log/src/mcp.ts +122 -0
- package/src/apps/log/src/routes/log.ts +333 -0
- package/src/apps/log/src/routes/status.ts +25 -0
- package/src/apps/log/src/server-sniffer.ts +118 -0
- package/src/apps/log/src/services/file-patterns.ts +39 -0
- package/src/apps/log/src/services/file-tailer.ts +228 -0
- package/src/apps/log/src/services/line-parser.ts +94 -0
- package/src/apps/log/src/services/log-writer.ts +39 -0
- package/src/apps/log/tsconfig.json +8 -0
- package/src/apps/prompts/.turbo/turbo-build.log +5 -0
- package/src/apps/prompts/.turbo/turbo-lint.log +24 -0
- package/src/apps/prompts/.turbo/turbo-typecheck.log +5 -0
- package/src/apps/prompts/mcp.ts +175 -0
- package/src/apps/prompts/node_modules/.bin/tsc +21 -0
- package/src/apps/prompts/node_modules/.bin/tsserver +21 -0
- package/src/apps/prompts/node_modules/.bin/tsx +21 -0
- package/src/apps/prompts/package.json +25 -0
- package/src/apps/prompts/public/page.css +315 -0
- package/src/apps/prompts/public/page.js +541 -0
- package/src/apps/prompts/services/prompt-store.ts +212 -0
- package/src/apps/prompts/src/index.ts +9 -0
- package/src/apps/prompts/tsconfig.json +8 -0
- package/src/apps/prompts/types.ts +27 -0
- package/src/apps/shell/.turbo/turbo-build.log +5 -0
- package/src/apps/shell/.turbo/turbo-lint.log +34 -0
- package/src/apps/shell/.turbo/turbo-typecheck.log +5 -0
- package/src/apps/shell/package.json +35 -0
- package/src/apps/shell/public/favicon.svg +7 -0
- package/src/apps/shell/public/page.css +407 -0
- package/src/apps/shell/public/page.js +1577 -0
- package/src/apps/shell/src/index.ts +150 -0
- package/src/apps/shell/src/mcp.ts +398 -0
- package/src/apps/shell/src/shell-types.ts +41 -0
- package/src/apps/shell/tsconfig.json +8 -0
- package/src/apps/test/.turbo/turbo-build.log +5 -0
- package/src/apps/test/.turbo/turbo-lint.log +27 -0
- package/src/apps/test/.turbo/turbo-typecheck.log +5 -0
- package/src/apps/test/node_modules/.bin/tsc +21 -0
- package/src/apps/test/node_modules/.bin/tsserver +21 -0
- package/src/apps/test/node_modules/.bin/tsx +21 -0
- package/src/apps/test/node_modules/.bin/uuid +21 -0
- package/src/apps/test/package.json +35 -0
- package/src/apps/test/public/favicon.svg +7 -0
- package/src/apps/test/public/page.css +499 -0
- package/src/apps/test/public/page.js +417 -0
- package/src/apps/test/public/scenario-runner.js +450 -0
- package/src/apps/test/src/index.ts +9 -0
- package/src/apps/test/src/mcp.ts +192 -0
- package/src/apps/test/src/routes/trigger.ts +285 -0
- package/src/apps/test/src/services/scenario-broadcaster.ts +60 -0
- package/src/apps/test/src/services/scenario-manager.ts +361 -0
- package/src/apps/test/src/services/scenario-store.ts +145 -0
- package/src/apps/test/tsconfig.json +8 -0
- package/src/apps/vocabulary/.turbo/turbo-build.log +5 -0
- package/src/apps/vocabulary/.turbo/turbo-lint.log +25 -0
- package/src/apps/vocabulary/.turbo/turbo-typecheck.log +5 -0
- package/src/apps/vocabulary/mcp.ts +173 -0
- package/src/apps/vocabulary/node_modules/.bin/tsc +21 -0
- package/src/apps/vocabulary/node_modules/.bin/tsserver +21 -0
- package/src/apps/vocabulary/node_modules/.bin/tsx +21 -0
- package/src/apps/vocabulary/package.json +25 -0
- package/src/apps/vocabulary/public/page.css +247 -0
- package/src/apps/vocabulary/public/page.js +444 -0
- package/src/apps/vocabulary/services/vocabulary-store.ts +179 -0
- package/src/apps/vocabulary/src/index.ts +10 -0
- package/src/apps/vocabulary/tsconfig.json +8 -0
- package/src/apps/vocabulary/types.ts +22 -0
- package/src/apps/voice/.turbo/turbo-build.log +5 -0
- package/src/apps/voice/.turbo/turbo-lint.log +43 -0
- package/src/apps/voice/.turbo/turbo-typecheck.log +5 -0
- package/src/apps/voice/node_modules/.bin/openai +21 -0
- package/src/apps/voice/node_modules/.bin/tsc +21 -0
- package/src/apps/voice/node_modules/.bin/tsserver +21 -0
- package/src/apps/voice/node_modules/.bin/tsx +21 -0
- package/src/apps/voice/package.json +35 -0
- package/src/apps/voice/public/favicon.svg +7 -0
- package/src/apps/voice/public/page.css +388 -0
- package/src/apps/voice/public/page.js +718 -0
- package/src/apps/voice/src/index.ts +10 -0
- package/src/apps/voice/src/mcp.ts +70 -0
- package/src/apps/voice/src/providers/index.ts +85 -0
- package/src/apps/voice/src/providers/openai-compatible.ts +94 -0
- package/src/apps/voice/src/providers/types.ts +27 -0
- package/src/apps/voice/src/routes/config.ts +118 -0
- package/src/apps/voice/src/routes/transcribe.ts +90 -0
- package/src/apps/voice/src/services/config-store.ts +129 -0
- package/src/apps/voice/src/services/stats.ts +108 -0
- package/src/apps/voice/src/transcribe.ts +11 -0
- package/src/apps/voice/src/utils/mime.ts +16 -0
- package/src/apps/voice/tsconfig.json +8 -0
- package/src/apps/workflow/.turbo/turbo-build.log +5 -0
- package/src/apps/workflow/.turbo/turbo-lint.log +96 -0
- package/src/apps/workflow/.turbo/turbo-typecheck.log +5 -0
- package/src/apps/workflow/engine/executors/decision-executor.ts +87 -0
- package/src/apps/workflow/engine/executors/file-executor.ts +90 -0
- package/src/apps/workflow/engine/executors/git-executor.ts +137 -0
- package/src/apps/workflow/engine/executors/http-executor.ts +65 -0
- package/src/apps/workflow/engine/executors/index.ts +28 -0
- package/src/apps/workflow/engine/executors/kanban-executor.ts +154 -0
- package/src/apps/workflow/engine/executors/llm-executor.ts +46 -0
- package/src/apps/workflow/engine/executors/log-executor.ts +62 -0
- package/src/apps/workflow/engine/executors/loop-executor.ts +14 -0
- package/src/apps/workflow/engine/executors/shell-executor.ts +107 -0
- package/src/apps/workflow/engine/executors/sub-workflow-executor.ts +61 -0
- package/src/apps/workflow/engine/executors/test-executor.ts +73 -0
- package/src/apps/workflow/engine/executors/trigger-executor.ts +39 -0
- package/src/apps/workflow/engine/expression-evaluator.ts +117 -0
- package/src/apps/workflow/engine/graph-runner.ts +438 -0
- package/src/apps/workflow/engine/node-executor.ts +104 -0
- package/src/apps/workflow/engine/node-registry.ts +15 -0
- package/src/apps/workflow/engine/variable-resolver.ts +109 -0
- package/src/apps/workflow/mcp.ts +223 -0
- package/src/apps/workflow/node_modules/.bin/tsc +21 -0
- package/src/apps/workflow/node_modules/.bin/tsserver +21 -0
- package/src/apps/workflow/node_modules/.bin/tsx +21 -0
- package/src/apps/workflow/package.json +25 -0
- package/src/apps/workflow/public/editor/canvas.js +366 -0
- package/src/apps/workflow/public/editor/drag-manager.js +326 -0
- package/src/apps/workflow/public/editor/edge-renderer.js +235 -0
- package/src/apps/workflow/public/editor/history-manager.js +147 -0
- package/src/apps/workflow/public/editor/layout-engine.js +159 -0
- package/src/apps/workflow/public/editor/node-renderer.js +199 -0
- package/src/apps/workflow/public/editor/selection-manager.js +193 -0
- package/src/apps/workflow/public/favicon.svg +7 -0
- package/src/apps/workflow/public/models/node-types.js +300 -0
- package/src/apps/workflow/public/models/workflow-model.js +257 -0
- package/src/apps/workflow/public/page.css +406 -0
- package/src/apps/workflow/public/page.js +658 -0
- package/src/apps/workflow/public/panels/inspector.js +360 -0
- package/src/apps/workflow/public/panels/palette.js +106 -0
- package/src/apps/workflow/public/panels/run-view.js +275 -0
- package/src/apps/workflow/public/panels/toolbar.js +232 -0
- package/src/apps/workflow/public/panels/workflow-list.js +237 -0
- package/src/apps/workflow/public/state/store.js +47 -0
- package/src/apps/workflow/services/custom-node-loader.ts +48 -0
- package/src/apps/workflow/services/legacy-converter.ts +72 -0
- package/src/apps/workflow/services/run-manager.ts +190 -0
- package/src/apps/workflow/services/workflow-store.ts +424 -0
- package/src/apps/workflow/services/workflow-validator.test.ts +103 -0
- package/src/apps/workflow/services/workflow-validator.ts +98 -0
- package/src/apps/workflow/src/index.ts +10 -0
- package/src/apps/workflow/templates/ci-pipeline.json +18 -0
- package/src/apps/workflow/templates/code-review.json +22 -0
- package/src/apps/workflow/templates/kanban-testing.json +24 -0
- package/src/apps/workflow/tsconfig.json +8 -0
- package/src/apps/workflow/types.ts +268 -0
- package/src/packages/auth-middleware.ts +14 -0
- package/src/packages/design-tokens/.turbo/turbo-build.log +10 -0
- package/src/packages/design-tokens/STYLEGUIDE.md +414 -0
- package/src/packages/design-tokens/build.js +413 -0
- package/src/packages/design-tokens/demo/index.html +1367 -0
- package/src/packages/design-tokens/demo/proposition-a.html +717 -0
- package/src/packages/design-tokens/demo/proposition-b.html +1239 -0
- package/src/packages/design-tokens/demo/proposition-c.html +1049 -0
- package/src/packages/design-tokens/dist/tailwind-preset.js +115 -0
- package/src/packages/design-tokens/dist/tokens.css +345 -0
- package/src/packages/design-tokens/dist/tokens.d.ts +229 -0
- package/src/packages/design-tokens/dist/tokens.js +386 -0
- package/src/packages/design-tokens/package.json +25 -0
- package/src/packages/design-tokens/tokens.json +228 -0
- package/src/packages/devtools-middleware.ts +22 -0
- package/src/packages/eslint-config/index.js +63 -0
- package/src/packages/eslint-config/node_modules/.bin/eslint +21 -0
- package/src/packages/eslint-config/package.json +18 -0
- package/src/packages/json-file-store.ts +232 -0
- package/src/packages/mcp-utils/.turbo/turbo-build.log +5 -0
- package/src/packages/mcp-utils/dist/index.d.ts +33 -0
- package/src/packages/mcp-utils/dist/index.d.ts.map +1 -0
- package/src/packages/mcp-utils/dist/index.js +126 -0
- package/src/packages/mcp-utils/dist/index.js.map +1 -0
- package/src/packages/mcp-utils/node_modules/.bin/tsc +21 -0
- package/src/packages/mcp-utils/node_modules/.bin/tsserver +21 -0
- package/src/packages/mcp-utils/package.json +32 -0
- package/src/packages/mcp-utils/src/index.ts +171 -0
- package/src/packages/mcp-utils/tsconfig.json +9 -0
- package/src/packages/paths.ts +18 -0
- package/src/packages/project-context/index.js +55 -0
- package/src/packages/project-context/package.json +13 -0
- package/src/packages/project-store.ts +127 -0
- package/src/packages/server-sniffer.ts +132 -0
- package/src/packages/shared-assets/favicon.svg +7 -0
- package/src/packages/shared-assets/keymap-registry.js +512 -0
- package/src/packages/shared-assets/logo.svg +6 -0
- package/src/packages/shared-assets/package.json +11 -0
- package/src/packages/shared-assets/ui-utils.js +48 -0
- package/src/packages/shared-assets/voice-widget.d.ts +37 -0
- package/src/packages/shared-assets/voice-widget.js +695 -0
- package/src/packages/shared-types/.turbo/turbo-build.log +5 -0
- package/src/packages/shared-types/dist/index.d.ts +39 -0
- package/src/packages/shared-types/dist/index.d.ts.map +1 -0
- package/src/packages/shared-types/node_modules/.bin/tsc +21 -0
- package/src/packages/shared-types/node_modules/.bin/tsserver +21 -0
- package/src/packages/shared-types/package.json +25 -0
- package/src/packages/shared-types/src/index.ts +41 -0
- package/src/packages/shared-types/tsconfig.json +11 -0
- package/src/packages/tsconfig/base.json +15 -0
- package/src/packages/tsconfig/next.json +14 -0
- package/src/packages/tsconfig/node.json +11 -0
- package/src/packages/tsconfig/package.json +10 -0
- package/turbo.json +25 -0
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
/* @devglide/design-tokens v2.0 — Tailwind v3 preset — generated, do not edit */
|
|
2
|
+
/** @type {import('tailwindcss').Config} */
|
|
3
|
+
export default {
|
|
4
|
+
theme: {
|
|
5
|
+
extend: {
|
|
6
|
+
colors: {
|
|
7
|
+
'df-base': '#1c2128',
|
|
8
|
+
'df-surface': '#22272e',
|
|
9
|
+
'df-raised': '#2d333b',
|
|
10
|
+
'df-overlay': '#353b44',
|
|
11
|
+
'df-sunken': '#161b22',
|
|
12
|
+
'df-border': '#373e47',
|
|
13
|
+
'df-border-subtle': '#2d333b',
|
|
14
|
+
'df-border-strong': '#444c56',
|
|
15
|
+
'df-text': '#adbac7',
|
|
16
|
+
'df-muted': '#768390',
|
|
17
|
+
'df-accent': '#7ee787',
|
|
18
|
+
'df-accent-subtle': '#0d1f12',
|
|
19
|
+
'df-accent-dim': '#1a3d1e',
|
|
20
|
+
'df-accent-bright': '#a0f0a8',
|
|
21
|
+
'df-idle': '#7ee787',
|
|
22
|
+
'df-active': '#56d364',
|
|
23
|
+
'df-recording': '#ff1500',
|
|
24
|
+
'df-processing': '#e3b341',
|
|
25
|
+
'df-success': '#4ade80',
|
|
26
|
+
'df-error': '#ff3333',
|
|
27
|
+
'df-warning': '#d29922',
|
|
28
|
+
'df-info': '#58a6ff',
|
|
29
|
+
'df-link': '#58a6ff',
|
|
30
|
+
},
|
|
31
|
+
fontFamily: {
|
|
32
|
+
'df-mono': ["JetBrains Mono","Fira Code","Cascadia Code","monospace"],
|
|
33
|
+
'df-ui': ["system-ui","-apple-system","Segoe UI","Roboto","sans-serif"],
|
|
34
|
+
'df-display': ["Inter Variable","Inter","system-ui","sans-serif"],
|
|
35
|
+
},
|
|
36
|
+
spacing: {
|
|
37
|
+
"df-1": "4px",
|
|
38
|
+
"df-2": "8px",
|
|
39
|
+
"df-3": "12px",
|
|
40
|
+
"df-4": "16px",
|
|
41
|
+
"df-5": "20px",
|
|
42
|
+
"df-6": "24px",
|
|
43
|
+
"df-8": "32px",
|
|
44
|
+
"df-10": "40px",
|
|
45
|
+
"df-12": "48px",
|
|
46
|
+
"df-16": "64px",
|
|
47
|
+
"df-20": "80px",
|
|
48
|
+
"df-24": "96px",
|
|
49
|
+
"df-px": "1px"
|
|
50
|
+
},
|
|
51
|
+
borderRadius: {
|
|
52
|
+
'df-xs': '2px',
|
|
53
|
+
'df-sm': '4px',
|
|
54
|
+
'df-md': '6px',
|
|
55
|
+
'df-lg': '8px',
|
|
56
|
+
'df-xl': '12px',
|
|
57
|
+
'df-full': '9999px',
|
|
58
|
+
},
|
|
59
|
+
boxShadow: {
|
|
60
|
+
'df-sm': '0 1px 3px rgba(0,0,0,0.4)',
|
|
61
|
+
'df-md': '0 2px 8px rgba(0,0,0,0.5)',
|
|
62
|
+
'df-lg': '0 4px 16px rgba(0,0,0,0.6)',
|
|
63
|
+
'df-xl': '0 8px 32px rgba(0,0,0,0.7)',
|
|
64
|
+
'df-glow': '0 0 8px rgba(126,231,135,0.4)',
|
|
65
|
+
'df-glow-strong': '0 0 16px rgba(126,231,135,0.7)',
|
|
66
|
+
'df-error-glow': '0 0 8px rgba(255,51,51,0.6)',
|
|
67
|
+
},
|
|
68
|
+
transitionDuration: {
|
|
69
|
+
'df-fast': '150ms',
|
|
70
|
+
'df-base': '250ms',
|
|
71
|
+
'df-slow': '400ms',
|
|
72
|
+
'df-slower': '600ms',
|
|
73
|
+
},
|
|
74
|
+
transitionTimingFunction: {
|
|
75
|
+
'df-spring': "linear(0, 0.009, 0.035 2.1%, 0.141 4.4%, 0.723 12.9%, 0.938 16.7%, 1.017, 1.058, 1.066 24%, 1.058, 1.037 31%, 0.99 38%, 0.977 42%, 0.975, 0.978 48.9%, 1)",
|
|
76
|
+
'df-spring-bouncy': "linear(0, 0.004, 0.016, 0.035, 0.063 9.1%, 0.141 13.6%, 0.25, 0.391, 0.563, 0.765, 1.006 30.7%, 1.119 34.8%, 1.17 38.4%, 1.177, 1.152 44.4%, 1.029 53%, 0.988 57.5%, 0.984, 0.989 63.2%, 1.006 69.3%, 1.012 75.4%, 1.007, 1)",
|
|
77
|
+
},
|
|
78
|
+
letterSpacing: {
|
|
79
|
+
'df-tight': '0',
|
|
80
|
+
'df-normal': '0.05em',
|
|
81
|
+
'df-wide': '0.12em',
|
|
82
|
+
'df-wider': '0.2em',
|
|
83
|
+
},
|
|
84
|
+
opacity: {
|
|
85
|
+
"df-5": "0.05",
|
|
86
|
+
"df-10": "0.1",
|
|
87
|
+
"df-20": "0.2",
|
|
88
|
+
"df-40": "0.4",
|
|
89
|
+
"df-60": "0.6",
|
|
90
|
+
"df-80": "0.8"
|
|
91
|
+
},
|
|
92
|
+
zIndex: {
|
|
93
|
+
'df-base': '0',
|
|
94
|
+
'df-raised': '10',
|
|
95
|
+
'df-overlay': '100',
|
|
96
|
+
'df-modal': '200',
|
|
97
|
+
'df-toast': '300',
|
|
98
|
+
},
|
|
99
|
+
maxWidth: {
|
|
100
|
+
'df-prose': '65ch',
|
|
101
|
+
'df-sm': '720px',
|
|
102
|
+
'df-md': '960px',
|
|
103
|
+
'df-lg': '1200px',
|
|
104
|
+
'df-xl': '1440px',
|
|
105
|
+
},
|
|
106
|
+
screens: {
|
|
107
|
+
'df-sm': '640px',
|
|
108
|
+
'df-md': '1024px',
|
|
109
|
+
'df-lg': '1440px',
|
|
110
|
+
'df-xl': '1920px',
|
|
111
|
+
'df-2xl': '2560px',
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
};
|
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
/* @devglide/design-tokens v2.0 — generated, do not edit */
|
|
2
|
+
/* Modern CSS architecture: @layer cascade, @property declarations, spring easings */
|
|
3
|
+
|
|
4
|
+
@layer df-tokens, df-keyframes, df-components, df-utilities;
|
|
5
|
+
|
|
6
|
+
/* ══════════════════════════════════════════════════════════════════════════════
|
|
7
|
+
Layer: df-tokens — Design token custom properties
|
|
8
|
+
══════════════════════════════════════════════════════════════════════════════ */
|
|
9
|
+
@layer df-tokens {
|
|
10
|
+
:root {
|
|
11
|
+
/* ── Primitive Palette ──────────────────────────────────────────────── */
|
|
12
|
+
--df-primitive-neutral-0: #0d1117;
|
|
13
|
+
--df-primitive-neutral-1: #161b22;
|
|
14
|
+
--df-primitive-neutral-2: #1c2128;
|
|
15
|
+
--df-primitive-neutral-3: #22272e;
|
|
16
|
+
--df-primitive-neutral-4: #2d333b;
|
|
17
|
+
--df-primitive-neutral-5: #353b44;
|
|
18
|
+
--df-primitive-neutral-6: #444c56;
|
|
19
|
+
--df-primitive-neutral-7: #545d68;
|
|
20
|
+
--df-primitive-neutral-8: #636e7b;
|
|
21
|
+
--df-primitive-neutral-9: #768390;
|
|
22
|
+
--df-primitive-neutral-10: #8b949e;
|
|
23
|
+
--df-primitive-neutral-11: #adbac7;
|
|
24
|
+
--df-primitive-neutral-12: #cdd9e5;
|
|
25
|
+
--df-primitive-green-1: #0d1f12;
|
|
26
|
+
--df-primitive-green-2: #1a3d1e;
|
|
27
|
+
--df-primitive-green-3: #1f6328;
|
|
28
|
+
--df-primitive-green-4: #2ea043;
|
|
29
|
+
--df-primitive-green-5: #3fb950;
|
|
30
|
+
--df-primitive-green-6: #56d364;
|
|
31
|
+
--df-primitive-green-7: #7ee787;
|
|
32
|
+
--df-primitive-green-8: #a0f0a8;
|
|
33
|
+
--df-primitive-green-9: #b7f5bd;
|
|
34
|
+
--df-primitive-red-1: #3d0d0d;
|
|
35
|
+
--df-primitive-red-2: #6e1616;
|
|
36
|
+
--df-primitive-red-3: #a82020;
|
|
37
|
+
--df-primitive-red-4: #d32f2f;
|
|
38
|
+
--df-primitive-red-5: #ff3333;
|
|
39
|
+
--df-primitive-red-6: #ff6b6b;
|
|
40
|
+
--df-primitive-amber-1: #3d2600;
|
|
41
|
+
--df-primitive-amber-2: #6e4400;
|
|
42
|
+
--df-primitive-amber-3: #9e6a03;
|
|
43
|
+
--df-primitive-amber-4: #d29922;
|
|
44
|
+
--df-primitive-amber-5: #e3b341;
|
|
45
|
+
--df-primitive-amber-6: #f0c84d;
|
|
46
|
+
--df-primitive-blue-1: #0d2240;
|
|
47
|
+
--df-primitive-blue-2: #1a3d6e;
|
|
48
|
+
--df-primitive-blue-3: #2f73b8;
|
|
49
|
+
--df-primitive-blue-4: #58a6ff;
|
|
50
|
+
--df-primitive-blue-5: #79c0ff;
|
|
51
|
+
|
|
52
|
+
/* ── Semantic Tokens ───────────────────────────────────────────────── */
|
|
53
|
+
--df-color-bg-base: #1c2128;
|
|
54
|
+
--df-color-bg-surface: #22272e;
|
|
55
|
+
--df-color-bg-raised: #2d333b;
|
|
56
|
+
--df-color-bg-overlay: #353b44;
|
|
57
|
+
--df-color-bg-sunken: #161b22;
|
|
58
|
+
--df-color-bg-invert: #adbac7;
|
|
59
|
+
--df-color-border-subtle: #2d333b;
|
|
60
|
+
--df-color-border-default: #373e47;
|
|
61
|
+
--df-color-border-strong: #444c56;
|
|
62
|
+
--df-color-border-accent: #4d5560;
|
|
63
|
+
--df-color-text-primary: #adbac7;
|
|
64
|
+
--df-color-text-secondary: #768390;
|
|
65
|
+
--df-color-text-muted: #636e7b;
|
|
66
|
+
--df-color-text-accent: #7ee787;
|
|
67
|
+
--df-color-text-inverse: #1c2128;
|
|
68
|
+
--df-color-text-link: #58a6ff;
|
|
69
|
+
--df-color-accent-subtle: #0d1f12;
|
|
70
|
+
--df-color-accent-dim: #1a3d1e;
|
|
71
|
+
--df-color-accent-muted: #2ea043;
|
|
72
|
+
--df-color-accent-default: #7ee787;
|
|
73
|
+
--df-color-accent-bright: #a0f0a8;
|
|
74
|
+
--df-color-accent-contrast: #1c2128;
|
|
75
|
+
--df-color-state-idle: #7ee787;
|
|
76
|
+
--df-color-state-active: #56d364;
|
|
77
|
+
--df-color-state-recording: #ff1500;
|
|
78
|
+
--df-color-state-processing: #e3b341;
|
|
79
|
+
--df-color-state-success: #4ade80;
|
|
80
|
+
--df-color-state-error: #ff3333;
|
|
81
|
+
--df-color-state-warning: #d29922;
|
|
82
|
+
--df-color-state-info: #58a6ff;
|
|
83
|
+
--df-font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
|
|
84
|
+
--df-font-ui: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
|
|
85
|
+
--df-font-display: 'Inter Variable', 'Inter', system-ui, sans-serif;
|
|
86
|
+
--df-font-size-xs: clamp(9px, calc(9px + 4 * (100vw - 720px) / 1840), 13px);
|
|
87
|
+
--df-font-size-sm: clamp(11px, calc(11px + 5 * (100vw - 720px) / 1840), 16px);
|
|
88
|
+
--df-font-size-md: clamp(12px, calc(12px + 7 * (100vw - 720px) / 1840), 19px);
|
|
89
|
+
--df-font-size-lg: clamp(15px, calc(15px + 10 * (100vw - 720px) / 1840), 25px);
|
|
90
|
+
--df-font-size-xl: clamp(19px, calc(19px + 14 * (100vw - 720px) / 1840), 33px);
|
|
91
|
+
--df-font-size-2xl: clamp(27px, calc(27px + 18 * (100vw - 720px) / 1840), 45px);
|
|
92
|
+
--df-font-size-3xl: clamp(35px, calc(35px + 28 * (100vw - 720px) / 1840), 63px);
|
|
93
|
+
--df-letter-spacing-tight: 0;
|
|
94
|
+
--df-letter-spacing-normal: 0.05em;
|
|
95
|
+
--df-letter-spacing-wide: 0.12em;
|
|
96
|
+
--df-letter-spacing-wider: 0.2em;
|
|
97
|
+
--df-line-height-tight: 1.1;
|
|
98
|
+
--df-line-height-normal: 1.4;
|
|
99
|
+
--df-line-height-loose: 1.7;
|
|
100
|
+
--df-space-1: 4px;
|
|
101
|
+
--df-space-2: 8px;
|
|
102
|
+
--df-space-3: 12px;
|
|
103
|
+
--df-space-4: 16px;
|
|
104
|
+
--df-space-5: 20px;
|
|
105
|
+
--df-space-6: 24px;
|
|
106
|
+
--df-space-8: 32px;
|
|
107
|
+
--df-space-10: 40px;
|
|
108
|
+
--df-space-12: 48px;
|
|
109
|
+
--df-space-16: 64px;
|
|
110
|
+
--df-space-20: 80px;
|
|
111
|
+
--df-space-24: 96px;
|
|
112
|
+
--df-space-px: 1px;
|
|
113
|
+
--df-radius-none: 0;
|
|
114
|
+
--df-radius-xs: 2px;
|
|
115
|
+
--df-radius-sm: 4px;
|
|
116
|
+
--df-radius-md: 6px;
|
|
117
|
+
--df-radius-lg: 8px;
|
|
118
|
+
--df-radius-xl: 12px;
|
|
119
|
+
--df-radius-full: 9999px;
|
|
120
|
+
--df-clip-sm: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
|
|
121
|
+
--df-clip-md: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
|
|
122
|
+
--df-clip-lg: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
|
|
123
|
+
--df-clip-xl: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
|
|
124
|
+
--df-shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
|
|
125
|
+
--df-shadow-md: 0 2px 8px rgba(0,0,0,0.5);
|
|
126
|
+
--df-shadow-lg: 0 4px 16px rgba(0,0,0,0.6);
|
|
127
|
+
--df-shadow-xl: 0 8px 32px rgba(0,0,0,0.7);
|
|
128
|
+
--df-glow-accent: 0 0 8px rgba(126,231,135,0.4);
|
|
129
|
+
--df-glow-accent-strong: 0 0 16px rgba(126,231,135,0.7);
|
|
130
|
+
--df-glow-error: 0 0 8px rgba(255,51,51,0.6);
|
|
131
|
+
--df-glow-success: 0 0 8px rgba(74,222,128,0.4);
|
|
132
|
+
--df-glow-processing: 0 0 8px rgba(227,179,65,0.4);
|
|
133
|
+
--df-opacity-5: 0.05;
|
|
134
|
+
--df-opacity-10: 0.1;
|
|
135
|
+
--df-opacity-20: 0.2;
|
|
136
|
+
--df-opacity-40: 0.4;
|
|
137
|
+
--df-opacity-60: 0.6;
|
|
138
|
+
--df-opacity-80: 0.8;
|
|
139
|
+
--df-duration-fast: 150ms;
|
|
140
|
+
--df-duration-base: 250ms;
|
|
141
|
+
--df-duration-slow: 400ms;
|
|
142
|
+
--df-duration-slower: 600ms;
|
|
143
|
+
--df-easing-default: ease;
|
|
144
|
+
--df-easing-in: ease-in;
|
|
145
|
+
--df-easing-out: ease-out;
|
|
146
|
+
--df-easing-linear: linear;
|
|
147
|
+
--df-easing-spring: linear(0, 0.009, 0.035 2.1%, 0.141 4.4%, 0.723 12.9%, 0.938 16.7%, 1.017, 1.058, 1.066 24%, 1.058, 1.037 31%, 0.99 38%, 0.977 42%, 0.975, 0.978 48.9%, 1);
|
|
148
|
+
--df-easing-spring-bouncy: linear(0, 0.004, 0.016, 0.035, 0.063 9.1%, 0.141 13.6%, 0.25, 0.391, 0.563, 0.765, 1.006 30.7%, 1.119 34.8%, 1.17 38.4%, 1.177, 1.152 44.4%, 1.029 53%, 0.988 57.5%, 0.984, 0.989 63.2%, 1.006 69.3%, 1.012 75.4%, 1.007, 1);
|
|
149
|
+
--df-focus-ring-width: 2px;
|
|
150
|
+
--df-focus-ring-offset: 2px;
|
|
151
|
+
--df-focus-ring-color: #7ee787;
|
|
152
|
+
--df-z-index-base: 0;
|
|
153
|
+
--df-z-index-raised: 10;
|
|
154
|
+
--df-z-index-overlay: 100;
|
|
155
|
+
--df-z-index-modal: 200;
|
|
156
|
+
--df-z-index-toast: 300;
|
|
157
|
+
--df-breakpoint-sm: 640px;
|
|
158
|
+
--df-breakpoint-md: 1024px;
|
|
159
|
+
--df-breakpoint-lg: 1440px;
|
|
160
|
+
--df-breakpoint-xl: 1920px;
|
|
161
|
+
--df-breakpoint-2xl: 2560px;
|
|
162
|
+
--df-max-width-prose: 65ch;
|
|
163
|
+
--df-max-width-sm: 720px;
|
|
164
|
+
--df-max-width-md: 960px;
|
|
165
|
+
--df-max-width-lg: 1200px;
|
|
166
|
+
--df-max-width-xl: 1440px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/* ── @property declarations for animatable tokens ──────────────────── */
|
|
170
|
+
@property --df-hue {
|
|
171
|
+
syntax: '<number>';
|
|
172
|
+
initial-value: 150;
|
|
173
|
+
inherits: true;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
@property --df-glow-opacity {
|
|
177
|
+
syntax: '<number>';
|
|
178
|
+
initial-value: 0.4;
|
|
179
|
+
inherits: true;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
@property --df-scale {
|
|
183
|
+
syntax: '<number>';
|
|
184
|
+
initial-value: 1;
|
|
185
|
+
inherits: true;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/* ══════════════════════════════════════════════════════════════════════════════
|
|
191
|
+
Layer: df-keyframes — Animations
|
|
192
|
+
══════════════════════════════════════════════════════════════════════════════ */
|
|
193
|
+
@layer df-keyframes {
|
|
194
|
+
/* CRT scanline sweep */
|
|
195
|
+
@keyframes df-crt-sweep {
|
|
196
|
+
0% { background-position: 0 -100%; }
|
|
197
|
+
100% { background-position: 0 200%; }
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
/* Accent glow pulse */
|
|
201
|
+
@keyframes df-glow-pulse {
|
|
202
|
+
0%, 100% { filter: drop-shadow(0 0 6px rgba(126,231,135,0.4)); }
|
|
203
|
+
50% { filter: drop-shadow(0 0 14px rgba(126,231,135,0.7)); }
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/* Error/recording alert pulse */
|
|
207
|
+
@keyframes df-alert-pulse {
|
|
208
|
+
0%, 100% { box-shadow: 0 0 6px rgba(255,51,51,0.4); }
|
|
209
|
+
50% { box-shadow: 0 0 16px rgba(255,51,51,0.8); }
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
/* Processing amber pulse */
|
|
213
|
+
@keyframes df-processing-pulse {
|
|
214
|
+
0%, 100% { box-shadow: 0 0 6px rgba(227,179,65,0.3); }
|
|
215
|
+
50% { box-shadow: 0 0 12px rgba(227,179,65,0.6); }
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/* Cursor blink */
|
|
219
|
+
@keyframes df-blink {
|
|
220
|
+
0%, 100% { opacity: 1; }
|
|
221
|
+
50% { opacity: 0; }
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
/* Fade in (for @starting-style fallback) */
|
|
225
|
+
@keyframes df-fade-in {
|
|
226
|
+
from { opacity: 0; }
|
|
227
|
+
to { opacity: 1; }
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
/* Slide up entrance */
|
|
231
|
+
@keyframes df-slide-up {
|
|
232
|
+
from { opacity: 0; transform: translateY(8px); }
|
|
233
|
+
to { opacity: 1; transform: translateY(0); }
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/* Spin (for loading indicators) */
|
|
237
|
+
@keyframes df-spin {
|
|
238
|
+
to { transform: rotate(360deg); }
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
/* ══════════════════════════════════════════════════════════════════════════════
|
|
243
|
+
Layer: df-components — Reusable component classes
|
|
244
|
+
══════════════════════════════════════════════════════════════════════════════ */
|
|
245
|
+
@layer df-components {
|
|
246
|
+
/* ── CRT scanline overlay ──────────────────────────────────────────── */
|
|
247
|
+
.df-crt {
|
|
248
|
+
position: relative;
|
|
249
|
+
overflow: hidden;
|
|
250
|
+
}
|
|
251
|
+
.df-crt::after {
|
|
252
|
+
content: '';
|
|
253
|
+
position: absolute; inset: 0;
|
|
254
|
+
background: linear-gradient(
|
|
255
|
+
to bottom,
|
|
256
|
+
transparent 0%,
|
|
257
|
+
rgba(126,231,135,0.03) 50%,
|
|
258
|
+
transparent 100%
|
|
259
|
+
);
|
|
260
|
+
background-size: 100% 40px;
|
|
261
|
+
animation: df-crt-sweep 4s linear infinite;
|
|
262
|
+
pointer-events: none; z-index: 9;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/* ── Diagonal grid texture ─────────────────────────────────────────── */
|
|
266
|
+
.df-grid {
|
|
267
|
+
background-image: repeating-linear-gradient(
|
|
268
|
+
-45deg,
|
|
269
|
+
rgba(126,231,135,0.02) 0px,
|
|
270
|
+
rgba(126,231,135,0.02) 1px,
|
|
271
|
+
transparent 1px,
|
|
272
|
+
transparent 8px
|
|
273
|
+
);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/* ── Corner brackets ───────────────────────────────────────────────── */
|
|
277
|
+
.df-brackets {
|
|
278
|
+
position: relative;
|
|
279
|
+
}
|
|
280
|
+
.df-brackets::before,
|
|
281
|
+
.df-brackets::after {
|
|
282
|
+
content: '';
|
|
283
|
+
position: absolute;
|
|
284
|
+
width: 12px; height: 12px;
|
|
285
|
+
border-color: var(--df-color-accent-default);
|
|
286
|
+
border-style: solid;
|
|
287
|
+
pointer-events: none;
|
|
288
|
+
}
|
|
289
|
+
.df-brackets::before {
|
|
290
|
+
top: 0; left: 0;
|
|
291
|
+
border-width: 2px 0 0 2px;
|
|
292
|
+
}
|
|
293
|
+
.df-brackets::after {
|
|
294
|
+
bottom: 0; right: 0;
|
|
295
|
+
border-width: 0 2px 2px 0;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
/* ── Focus ring (WCAG 2.2 compliant) ───────────────────────────────── */
|
|
299
|
+
.df-focus-ring:focus-visible {
|
|
300
|
+
outline: var(--df-focus-ring-width) solid var(--df-focus-ring-color);
|
|
301
|
+
outline-offset: var(--df-focus-ring-offset);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
/* ── Panel component ───────────────────────────────────────────────── */
|
|
305
|
+
.df-panel {
|
|
306
|
+
background: var(--df-color-bg-surface);
|
|
307
|
+
border: 1px solid var(--df-color-border-default);
|
|
308
|
+
clip-path: var(--df-clip-md);
|
|
309
|
+
padding: var(--df-space-4) var(--df-space-6);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/* ── Spinner ───────────────────────────────────────────────────────── */
|
|
313
|
+
.df-spinner {
|
|
314
|
+
width: 1em; height: 1em;
|
|
315
|
+
border: 2px solid var(--df-color-border-default);
|
|
316
|
+
border-top-color: var(--df-color-accent-default);
|
|
317
|
+
border-radius: var(--df-radius-full);
|
|
318
|
+
animation: df-spin 0.6s linear infinite;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/* ══════════════════════════════════════════════════════════════════════════════
|
|
323
|
+
Layer: df-utilities — Utility classes
|
|
324
|
+
══════════════════════════════════════════════════════════════════════════════ */
|
|
325
|
+
@layer df-utilities {
|
|
326
|
+
/* Screen reader only */
|
|
327
|
+
.df-sr-only {
|
|
328
|
+
position: absolute;
|
|
329
|
+
width: 1px; height: 1px;
|
|
330
|
+
padding: 0; margin: -1px;
|
|
331
|
+
overflow: hidden;
|
|
332
|
+
clip: rect(0, 0, 0, 0);
|
|
333
|
+
white-space: nowrap;
|
|
334
|
+
border-width: 0;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/* Reduced motion: disable animations for users who prefer it */
|
|
338
|
+
@media (prefers-reduced-motion: reduce) {
|
|
339
|
+
.df-crt::after,
|
|
340
|
+
.df-grid {
|
|
341
|
+
animation: none;
|
|
342
|
+
background-image: none;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
}
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
/* @devglide/design-tokens v2.0 — generated, do not edit */
|
|
2
|
+
export declare const tokens: {
|
|
3
|
+
primitive: {
|
|
4
|
+
neutral: {
|
|
5
|
+
0: string,
|
|
6
|
+
1: string,
|
|
7
|
+
2: string,
|
|
8
|
+
3: string,
|
|
9
|
+
4: string,
|
|
10
|
+
5: string,
|
|
11
|
+
6: string,
|
|
12
|
+
7: string,
|
|
13
|
+
8: string,
|
|
14
|
+
9: string,
|
|
15
|
+
10: string,
|
|
16
|
+
11: string,
|
|
17
|
+
12: string
|
|
18
|
+
},
|
|
19
|
+
green: {
|
|
20
|
+
1: string,
|
|
21
|
+
2: string,
|
|
22
|
+
3: string,
|
|
23
|
+
4: string,
|
|
24
|
+
5: string,
|
|
25
|
+
6: string,
|
|
26
|
+
7: string,
|
|
27
|
+
8: string,
|
|
28
|
+
9: string
|
|
29
|
+
},
|
|
30
|
+
red: {
|
|
31
|
+
1: string,
|
|
32
|
+
2: string,
|
|
33
|
+
3: string,
|
|
34
|
+
4: string,
|
|
35
|
+
5: string,
|
|
36
|
+
6: string
|
|
37
|
+
},
|
|
38
|
+
amber: {
|
|
39
|
+
1: string,
|
|
40
|
+
2: string,
|
|
41
|
+
3: string,
|
|
42
|
+
4: string,
|
|
43
|
+
5: string,
|
|
44
|
+
6: string
|
|
45
|
+
},
|
|
46
|
+
blue: {
|
|
47
|
+
1: string,
|
|
48
|
+
2: string,
|
|
49
|
+
3: string,
|
|
50
|
+
4: string,
|
|
51
|
+
5: string
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
color: {
|
|
55
|
+
bg: {
|
|
56
|
+
base: string,
|
|
57
|
+
surface: string,
|
|
58
|
+
raised: string,
|
|
59
|
+
overlay: string,
|
|
60
|
+
sunken: string,
|
|
61
|
+
invert: string
|
|
62
|
+
},
|
|
63
|
+
border: {
|
|
64
|
+
subtle: string,
|
|
65
|
+
default: string,
|
|
66
|
+
strong: string,
|
|
67
|
+
accent: string
|
|
68
|
+
},
|
|
69
|
+
text: {
|
|
70
|
+
primary: string,
|
|
71
|
+
secondary: string,
|
|
72
|
+
muted: string,
|
|
73
|
+
accent: string,
|
|
74
|
+
inverse: string,
|
|
75
|
+
link: string
|
|
76
|
+
},
|
|
77
|
+
accent: {
|
|
78
|
+
subtle: string,
|
|
79
|
+
dim: string,
|
|
80
|
+
muted: string,
|
|
81
|
+
default: string,
|
|
82
|
+
bright: string,
|
|
83
|
+
contrast: string
|
|
84
|
+
},
|
|
85
|
+
state: {
|
|
86
|
+
idle: string,
|
|
87
|
+
active: string,
|
|
88
|
+
recording: string,
|
|
89
|
+
processing: string,
|
|
90
|
+
success: string,
|
|
91
|
+
error: string,
|
|
92
|
+
warning: string,
|
|
93
|
+
info: string
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
font: {
|
|
97
|
+
mono: string,
|
|
98
|
+
ui: string,
|
|
99
|
+
display: string
|
|
100
|
+
},
|
|
101
|
+
fontSize: {
|
|
102
|
+
xs: string,
|
|
103
|
+
sm: string,
|
|
104
|
+
md: string,
|
|
105
|
+
lg: string,
|
|
106
|
+
xl: string,
|
|
107
|
+
2xl: string,
|
|
108
|
+
3xl: string
|
|
109
|
+
},
|
|
110
|
+
letterSpacing: {
|
|
111
|
+
tight: string,
|
|
112
|
+
normal: string,
|
|
113
|
+
wide: string,
|
|
114
|
+
wider: string
|
|
115
|
+
},
|
|
116
|
+
lineHeight: {
|
|
117
|
+
tight: string,
|
|
118
|
+
normal: string,
|
|
119
|
+
loose: string
|
|
120
|
+
},
|
|
121
|
+
space: {
|
|
122
|
+
1: string,
|
|
123
|
+
2: string,
|
|
124
|
+
3: string,
|
|
125
|
+
4: string,
|
|
126
|
+
5: string,
|
|
127
|
+
6: string,
|
|
128
|
+
8: string,
|
|
129
|
+
10: string,
|
|
130
|
+
12: string,
|
|
131
|
+
16: string,
|
|
132
|
+
20: string,
|
|
133
|
+
24: string,
|
|
134
|
+
px: string
|
|
135
|
+
},
|
|
136
|
+
radius: {
|
|
137
|
+
none: string,
|
|
138
|
+
xs: string,
|
|
139
|
+
sm: string,
|
|
140
|
+
md: string,
|
|
141
|
+
lg: string,
|
|
142
|
+
xl: string,
|
|
143
|
+
full: string
|
|
144
|
+
},
|
|
145
|
+
clip: {
|
|
146
|
+
sm: string,
|
|
147
|
+
md: string,
|
|
148
|
+
lg: string,
|
|
149
|
+
xl: string
|
|
150
|
+
},
|
|
151
|
+
shadow: {
|
|
152
|
+
sm: string,
|
|
153
|
+
md: string,
|
|
154
|
+
lg: string,
|
|
155
|
+
xl: string
|
|
156
|
+
},
|
|
157
|
+
glow: {
|
|
158
|
+
accent: string,
|
|
159
|
+
accent-strong: string,
|
|
160
|
+
error: string,
|
|
161
|
+
success: string,
|
|
162
|
+
processing: string
|
|
163
|
+
},
|
|
164
|
+
opacity: {
|
|
165
|
+
5: string,
|
|
166
|
+
10: string,
|
|
167
|
+
20: string,
|
|
168
|
+
40: string,
|
|
169
|
+
60: string,
|
|
170
|
+
80: string
|
|
171
|
+
},
|
|
172
|
+
duration: {
|
|
173
|
+
fast: string,
|
|
174
|
+
base: string,
|
|
175
|
+
slow: string,
|
|
176
|
+
slower: string
|
|
177
|
+
},
|
|
178
|
+
easing: {
|
|
179
|
+
default: string,
|
|
180
|
+
in: string,
|
|
181
|
+
out: string,
|
|
182
|
+
linear: string,
|
|
183
|
+
spring: string,
|
|
184
|
+
spring-bouncy: string
|
|
185
|
+
},
|
|
186
|
+
focus: {
|
|
187
|
+
ring-width: string,
|
|
188
|
+
ring-offset: string,
|
|
189
|
+
ring-color: string
|
|
190
|
+
},
|
|
191
|
+
zIndex: {
|
|
192
|
+
base: string,
|
|
193
|
+
raised: string,
|
|
194
|
+
overlay: string,
|
|
195
|
+
modal: string,
|
|
196
|
+
toast: string
|
|
197
|
+
},
|
|
198
|
+
breakpoint: {
|
|
199
|
+
sm: string,
|
|
200
|
+
md: string,
|
|
201
|
+
lg: string,
|
|
202
|
+
xl: string,
|
|
203
|
+
2xl: string
|
|
204
|
+
},
|
|
205
|
+
maxWidth: {
|
|
206
|
+
prose: string,
|
|
207
|
+
sm: string,
|
|
208
|
+
md: string,
|
|
209
|
+
lg: string,
|
|
210
|
+
xl: string
|
|
211
|
+
}
|
|
212
|
+
};
|
|
213
|
+
|
|
214
|
+
export declare const cssVars: Record<string, string>;
|
|
215
|
+
export declare const primitives: typeof tokens.primitive;
|
|
216
|
+
export declare const colors: typeof tokens.color;
|
|
217
|
+
export declare const fonts: typeof tokens.font;
|
|
218
|
+
export declare const fontSizes: typeof tokens.fontSize;
|
|
219
|
+
export declare const spacing: typeof tokens.space;
|
|
220
|
+
export declare const radii: typeof tokens.radius;
|
|
221
|
+
export declare const clips: typeof tokens.clip;
|
|
222
|
+
export declare const shadows: typeof tokens.shadow;
|
|
223
|
+
export declare const glows: typeof tokens.glow;
|
|
224
|
+
export declare const opacities: typeof tokens.opacity;
|
|
225
|
+
export declare const durations: typeof tokens.duration;
|
|
226
|
+
export declare const easings: typeof tokens.easing;
|
|
227
|
+
export declare const focusRing: typeof tokens.focus;
|
|
228
|
+
export declare const breakpoints: typeof tokens.breakpoint;
|
|
229
|
+
export declare const maxWidths: typeof tokens.maxWidth;
|