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.
@@ -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"