brandspec 0.1.0
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 +230 -0
- package/dist/cli.js +1516 -0
- package/dist/index.cjs +773 -0
- package/dist/index.d.cts +402 -0
- package/dist/index.d.ts +402 -0
- package/dist/index.js +718 -0
- package/package.json +61 -0
- package/schema/spec/assets.md +219 -0
- package/schema/spec/core.md +203 -0
- package/schema/spec/guidelines.md +110 -0
- package/schema/spec/tokens.md +389 -0
- package/schema/v0.1.0.yaml +201 -0
- package/workshop/SKILL.md +218 -0
- package/workshop/flow.md +181 -0
- package/workshop/phases/01-discovery.md +156 -0
- package/workshop/phases/02-concept.md +234 -0
- package/workshop/phases/03-visual.md +271 -0
- package/workshop/phases/04-documentation.md +99 -0
- package/workshop/templates/_workshop/decisions.yml +15 -0
- package/workshop/templates/_workshop/memo.md +23 -0
- package/workshop/templates/_workshop/position.yml +9 -0
- package/workshop/templates/_workshop/session.md +28 -0
- package/workshop/templates/brand.yaml +112 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
# brand.yaml template
|
|
2
|
+
# Based on brandspec v0.1.0
|
|
3
|
+
# Spec: https://github.com/brandspec/brandspec
|
|
4
|
+
|
|
5
|
+
meta:
|
|
6
|
+
name: "" # Required: Brand name
|
|
7
|
+
version: "1.0.0"
|
|
8
|
+
updated: ""
|
|
9
|
+
description: ""
|
|
10
|
+
|
|
11
|
+
core:
|
|
12
|
+
essence: "" # One sentence capturing the brand
|
|
13
|
+
tagline: ""
|
|
14
|
+
personality: [] # 3-5 adjectives
|
|
15
|
+
voice:
|
|
16
|
+
tone: []
|
|
17
|
+
principles: []
|
|
18
|
+
|
|
19
|
+
tokens:
|
|
20
|
+
# W3C Design Tokens Community Group format
|
|
21
|
+
# https://tr.designtokens.org/format/
|
|
22
|
+
# Color format: oklch recommended (perceptually uniform, wide gamut)
|
|
23
|
+
colors:
|
|
24
|
+
# Brand colors
|
|
25
|
+
primary:
|
|
26
|
+
$value: ""
|
|
27
|
+
$type: color
|
|
28
|
+
$description: ""
|
|
29
|
+
primary-foreground:
|
|
30
|
+
$value: ""
|
|
31
|
+
$type: color
|
|
32
|
+
secondary:
|
|
33
|
+
$value: ""
|
|
34
|
+
$type: color
|
|
35
|
+
secondary-foreground:
|
|
36
|
+
$value: ""
|
|
37
|
+
$type: color
|
|
38
|
+
|
|
39
|
+
# Surface colors
|
|
40
|
+
background:
|
|
41
|
+
$value: ""
|
|
42
|
+
$type: color
|
|
43
|
+
foreground:
|
|
44
|
+
$value: ""
|
|
45
|
+
$type: color
|
|
46
|
+
muted:
|
|
47
|
+
$value: ""
|
|
48
|
+
$type: color
|
|
49
|
+
muted-foreground:
|
|
50
|
+
$value: ""
|
|
51
|
+
$type: color
|
|
52
|
+
|
|
53
|
+
# Status colors
|
|
54
|
+
destructive:
|
|
55
|
+
$value: ""
|
|
56
|
+
$type: color
|
|
57
|
+
destructive-foreground:
|
|
58
|
+
$value: ""
|
|
59
|
+
$type: color
|
|
60
|
+
success:
|
|
61
|
+
$value: ""
|
|
62
|
+
$type: color
|
|
63
|
+
success-foreground:
|
|
64
|
+
$value: ""
|
|
65
|
+
$type: color
|
|
66
|
+
warning:
|
|
67
|
+
$value: ""
|
|
68
|
+
$type: color
|
|
69
|
+
warning-foreground:
|
|
70
|
+
$value: ""
|
|
71
|
+
$type: color
|
|
72
|
+
info:
|
|
73
|
+
$value: ""
|
|
74
|
+
$type: color
|
|
75
|
+
info-foreground:
|
|
76
|
+
$value: ""
|
|
77
|
+
$type: color
|
|
78
|
+
|
|
79
|
+
typography:
|
|
80
|
+
heading:
|
|
81
|
+
$value: ""
|
|
82
|
+
$type: fontFamily
|
|
83
|
+
body:
|
|
84
|
+
$value: ""
|
|
85
|
+
$type: fontFamily
|
|
86
|
+
|
|
87
|
+
assets: []
|
|
88
|
+
# - file: assets/logo-primary.svg
|
|
89
|
+
# id: logo-primary
|
|
90
|
+
# role: logo
|
|
91
|
+
# variant: primary
|
|
92
|
+
|
|
93
|
+
guidelines: {}
|
|
94
|
+
# logo-usage:
|
|
95
|
+
# content: |
|
|
96
|
+
# ## Logo Usage
|
|
97
|
+
# ...
|
|
98
|
+
|
|
99
|
+
extensions: {}
|
|
100
|
+
# Optional: Brand-specific color scale
|
|
101
|
+
# brand-scale:
|
|
102
|
+
# primary-50:
|
|
103
|
+
# $value: "oklch(...)"
|
|
104
|
+
# $type: color
|
|
105
|
+
# primary-100:
|
|
106
|
+
# $value: "oklch(...)"
|
|
107
|
+
# $type: color
|
|
108
|
+
# # ... through primary-900
|
|
109
|
+
#
|
|
110
|
+
# Optional: Social links, legal info, etc.
|
|
111
|
+
# social:
|
|
112
|
+
# twitter: "@handle"
|