@agent-relay/brand 1.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/README.md +36 -0
- package/brand.css +226 -0
- package/package.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# @agent-relay/brand
|
|
2
|
+
|
|
3
|
+
Shared brand tokens, CSS variables, and color system for Agent Relay and associated properties.
|
|
4
|
+
|
|
5
|
+
This is a pure CSS package — no build step required.
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
### Import in CSS (with a bundler)
|
|
10
|
+
|
|
11
|
+
```css
|
|
12
|
+
@import '@agent-relay/brand/brand.css';
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Link directly (HTML)
|
|
16
|
+
|
|
17
|
+
```html
|
|
18
|
+
<link rel="stylesheet" href="node_modules/@agent-relay/brand/brand.css">
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Static sites without a bundler
|
|
22
|
+
|
|
23
|
+
Copy `brand.css` into your project, or reference it via a CDN.
|
|
24
|
+
|
|
25
|
+
## Tokens
|
|
26
|
+
|
|
27
|
+
The file exposes CSS custom properties on `:root` for light mode and `:root[data-theme='dark']` for dark mode. Key token groups:
|
|
28
|
+
|
|
29
|
+
- **Logo** — `--logo-primary`, `--logo-secondary`
|
|
30
|
+
- **Brand accents** — `--accent-warm`, `--accent-ink`, `--accent-stone`
|
|
31
|
+
- **Status** — `--status-red`, `--status-yellow`, `--status-green`
|
|
32
|
+
- **Console / terminal** — `--console-bg`, `--console-fg`, etc.
|
|
33
|
+
- **Primary scale** — `--primary-50` through `--primary-950`
|
|
34
|
+
- **Secondary scale** — `--secondary-50` through `--secondary-950`
|
|
35
|
+
- **Neutral scale** — `--neutral-50` through `--neutral-950`
|
|
36
|
+
- **Semantic tokens** — `--bg`, `--fg`, `--primary`, `--card-bg`, `--nav-*`, `--footer-*`, etc.
|
package/brand.css
ADDED
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Agent Relay Brand Color Guide
|
|
3
|
+
|
|
4
|
+
Reuse guidance:
|
|
5
|
+
- Copy the whole file into another project.
|
|
6
|
+
- Use the :root block for the standard Agent Relay look.
|
|
7
|
+
- Keep the semantic token names; that is the main design pattern in the current site.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
:root {
|
|
11
|
+
/* Logo */
|
|
12
|
+
--logo-primary: #4A90C2;
|
|
13
|
+
--logo-secondary: rgba(74, 144, 194, 0.5);
|
|
14
|
+
|
|
15
|
+
/* Brand accents */
|
|
16
|
+
--accent-warm: #C1674B;
|
|
17
|
+
--accent-warm-deep: #B45542;
|
|
18
|
+
--accent-warm-soft: #CD866A;
|
|
19
|
+
|
|
20
|
+
--accent-ink: #111827;
|
|
21
|
+
--accent-stone: #7A7A72;
|
|
22
|
+
--accent-stone-light: #F5F4F0;
|
|
23
|
+
--accent-stone-dark: #5A5A54;
|
|
24
|
+
|
|
25
|
+
/* Status */
|
|
26
|
+
--status-red: #FF5F57;
|
|
27
|
+
--status-yellow: #FEBC2E;
|
|
28
|
+
--status-green: #28C840;
|
|
29
|
+
|
|
30
|
+
/* Console / terminal */
|
|
31
|
+
--console-bg: #1A1C22;
|
|
32
|
+
--console-panel: #15171C;
|
|
33
|
+
--console-line: #2A2D35;
|
|
34
|
+
--console-fg: #C9D1D9;
|
|
35
|
+
--console-muted: #555555;
|
|
36
|
+
--console-keyword: #7EB8DA;
|
|
37
|
+
--console-string: #CE9178;
|
|
38
|
+
--console-type: #4EC9B0;
|
|
39
|
+
--console-method: #DCDCAA;
|
|
40
|
+
|
|
41
|
+
/* Primary (Curious Blue) scale */
|
|
42
|
+
--primary-50: #F3F7FC;
|
|
43
|
+
--primary-100: #E7EFF7;
|
|
44
|
+
--primary-200: #C9DDEE;
|
|
45
|
+
--primary-300: #99C2E0;
|
|
46
|
+
--primary-400: #62A1CE;
|
|
47
|
+
--primary-500: #4A90C2;
|
|
48
|
+
--primary-600: #2D6A9C;
|
|
49
|
+
--primary-700: #26557E;
|
|
50
|
+
--primary-800: #234969;
|
|
51
|
+
--primary-900: #223E58;
|
|
52
|
+
--primary-950: #16283B;
|
|
53
|
+
|
|
54
|
+
/* Secondary (warm) scale */
|
|
55
|
+
--secondary-50: #FBF5F1;
|
|
56
|
+
--secondary-100: #F5E8DF;
|
|
57
|
+
--secondary-200: #EACEBE;
|
|
58
|
+
--secondary-300: #DCAD95;
|
|
59
|
+
--secondary-400: #CD866A;
|
|
60
|
+
--secondary-500: #C1674B;
|
|
61
|
+
--secondary-600: #B45542;
|
|
62
|
+
--secondary-700: #964338;
|
|
63
|
+
--secondary-800: #793833;
|
|
64
|
+
--secondary-900: #62302C;
|
|
65
|
+
--secondary-950: #341716;
|
|
66
|
+
|
|
67
|
+
/* Neutral (Pampas) scale */
|
|
68
|
+
--neutral-50: #f5f2ee;
|
|
69
|
+
--neutral-100: #efebe5;
|
|
70
|
+
--neutral-200: #dfd5c9;
|
|
71
|
+
--neutral-300: #cab9a7;
|
|
72
|
+
--neutral-400: #b49a83;
|
|
73
|
+
--neutral-500: #a5836a;
|
|
74
|
+
--neutral-600: #98735e;
|
|
75
|
+
--neutral-700: #7f5e4f;
|
|
76
|
+
--neutral-800: #684e44;
|
|
77
|
+
--neutral-900: #554139;
|
|
78
|
+
--neutral-950: #2d211d;
|
|
79
|
+
|
|
80
|
+
/* Semantic tokens */
|
|
81
|
+
--bg: #F9FAFB;
|
|
82
|
+
--bg-elevated: rgba(255, 255, 255, 0.8);
|
|
83
|
+
--fg: #111827;
|
|
84
|
+
--fg-muted: #4B5563;
|
|
85
|
+
--fg-faint: #9CA3AF;
|
|
86
|
+
--primary: var(--primary-500);
|
|
87
|
+
--primary-hover: var(--primary-600);
|
|
88
|
+
--primary-bg: var(--primary-500);
|
|
89
|
+
--primary-fg: #ffffff;
|
|
90
|
+
--secondary-bg: var(--secondary-100);
|
|
91
|
+
--secondary-fg: var(--secondary-600);
|
|
92
|
+
--line: rgba(74, 144, 194, 0.10);
|
|
93
|
+
--surface: #F3F4F6;
|
|
94
|
+
--surface-strong: #FFFFFF;
|
|
95
|
+
--section-bg: #ffffff;
|
|
96
|
+
--code-bg: #F3F4F6;
|
|
97
|
+
--code-fg: #1F2937;
|
|
98
|
+
--inline-code-bg: rgba(74, 144, 194, 0.07);
|
|
99
|
+
--inline-code-fg: var(--primary-800);
|
|
100
|
+
--card-bg: rgba(255, 255, 255, 0.9);
|
|
101
|
+
--card-border: rgba(74, 144, 194, 0.10);
|
|
102
|
+
--card-hover-border: rgba(74, 144, 194, 0.28);
|
|
103
|
+
--note-bg: rgba(74, 144, 194, 0.05);
|
|
104
|
+
--link-underline: rgba(74, 144, 194, 0.3);
|
|
105
|
+
--nav-solid-bg: #ffffff;
|
|
106
|
+
--nav-bg: rgba(255, 255, 255, 0.76);
|
|
107
|
+
--nav-fg: #111827;
|
|
108
|
+
--nav-muted: rgba(17, 24, 39, 0.72);
|
|
109
|
+
--nav-subtle: rgba(17, 24, 39, 0.52);
|
|
110
|
+
--nav-surface: rgba(17, 24, 39, 0.04);
|
|
111
|
+
--nav-surface-hover: rgba(17, 24, 39, 0.08);
|
|
112
|
+
--nav-border: rgba(74, 144, 194, 0.16);
|
|
113
|
+
--nav-border-strong: rgba(74, 144, 194, 0.3);
|
|
114
|
+
--nav-link-hover: var(--primary-700);
|
|
115
|
+
--nav-shadow: rgba(35, 73, 105, 0.14);
|
|
116
|
+
--nav-inset: rgba(255, 255, 255, 0.74);
|
|
117
|
+
--nav-logo-wordmark: var(--accent-ink);
|
|
118
|
+
--nav-logo-mark: var(--primary-500);
|
|
119
|
+
--footer-bg: var(--primary-500);
|
|
120
|
+
--footer-fg: #ffffff;
|
|
121
|
+
--footer-muted: rgba(255, 255, 255, 0.7);
|
|
122
|
+
--footer-faint: rgba(255, 255, 255, 0.4);
|
|
123
|
+
--footer-line: rgba(255, 255, 255, 0.12);
|
|
124
|
+
--btn-bg: var(--primary-500);
|
|
125
|
+
--btn-hover: var(--primary-600);
|
|
126
|
+
--hero-gradient: linear-gradient(180deg, var(--bg) 0%, var(--primary-50) 100%);
|
|
127
|
+
--landing-hero-bg: linear-gradient(180deg, #f3f8fc 0%, #e8f1f8 18%, #d4e4f1 54%, #b5cee2 100%);
|
|
128
|
+
--secondary-surface: #EBF3F8;
|
|
129
|
+
--showcase-bg: #F2EFE9;
|
|
130
|
+
--overlay: rgba(0, 0, 0, 0.3);
|
|
131
|
+
--shadow-strong: 0 16px 64px rgba(0, 0, 0, 0.2);
|
|
132
|
+
--terminal-bg: var(--console-bg);
|
|
133
|
+
--terminal-panel: var(--console-panel);
|
|
134
|
+
--terminal-line: var(--console-line);
|
|
135
|
+
--terminal-fg: var(--console-fg);
|
|
136
|
+
--terminal-muted: #555555;
|
|
137
|
+
--terminal-keyword: var(--console-keyword);
|
|
138
|
+
--terminal-string: var(--console-string);
|
|
139
|
+
--terminal-type: var(--console-type);
|
|
140
|
+
--terminal-method: var(--console-method);
|
|
141
|
+
--agent-card-bg: rgba(255, 255, 255, 0.88);
|
|
142
|
+
--agent-card-header: rgba(245, 243, 238, 0.95);
|
|
143
|
+
--agent-card-border: rgba(45, 79, 62, 0.10);
|
|
144
|
+
--agent-card-border-active: rgba(45, 79, 62, 0.22);
|
|
145
|
+
--agent-card-title: #2D4F3E;
|
|
146
|
+
--agent-card-muted: #8A907E;
|
|
147
|
+
--agent-card-status: #3A8C62;
|
|
148
|
+
--agent-card-glow: rgba(58, 140, 98, 0.35);
|
|
149
|
+
--syntax-string: #B45309;
|
|
150
|
+
--syntax-method: #6B21A8;
|
|
151
|
+
--syntax-comment: #9CA3AF;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
:root[data-theme='dark'] {
|
|
155
|
+
--bg: #08111A;
|
|
156
|
+
--bg-elevated: rgba(12, 20, 30, 0.82);
|
|
157
|
+
--fg: #EDF4FB;
|
|
158
|
+
--fg-muted: #A8B8C8;
|
|
159
|
+
--fg-faint: #77879A;
|
|
160
|
+
--primary: #74B8E2;
|
|
161
|
+
--primary-hover: #94CBEF;
|
|
162
|
+
--primary-bg: #62A1CE;
|
|
163
|
+
--primary-fg: #06111A;
|
|
164
|
+
--secondary-bg: rgba(193, 103, 75, 0.14);
|
|
165
|
+
--secondary-fg: #F0B39F;
|
|
166
|
+
--line: rgba(116, 184, 226, 0.18);
|
|
167
|
+
--surface: #0F1B29;
|
|
168
|
+
--surface-strong: #132234;
|
|
169
|
+
--section-bg: #0B141F;
|
|
170
|
+
--code-bg: #0D1723;
|
|
171
|
+
--code-fg: #DBE5F0;
|
|
172
|
+
--inline-code-bg: rgba(116, 184, 226, 0.14);
|
|
173
|
+
--inline-code-fg: #C6E6FA;
|
|
174
|
+
--card-bg: rgba(15, 27, 41, 0.84);
|
|
175
|
+
--card-border: rgba(116, 184, 226, 0.16);
|
|
176
|
+
--card-hover-border: rgba(116, 184, 226, 0.32);
|
|
177
|
+
--note-bg: rgba(116, 184, 226, 0.1);
|
|
178
|
+
--link-underline: rgba(116, 184, 226, 0.35);
|
|
179
|
+
--nav-solid-bg: #0c1c2a;
|
|
180
|
+
--nav-bg: rgba(12, 28, 42, 0.92);
|
|
181
|
+
--nav-fg: #EDF4FB;
|
|
182
|
+
--nav-muted: rgba(237, 244, 251, 0.78);
|
|
183
|
+
--nav-subtle: rgba(237, 244, 251, 0.54);
|
|
184
|
+
--nav-surface: rgba(255, 255, 255, 0.06);
|
|
185
|
+
--nav-surface-hover: rgba(255, 255, 255, 0.1);
|
|
186
|
+
--nav-border: rgba(255, 255, 255, 0.14);
|
|
187
|
+
--nav-border-strong: rgba(255, 255, 255, 0.24);
|
|
188
|
+
--nav-link-hover: #9FD4F5;
|
|
189
|
+
--nav-shadow: rgba(0, 0, 0, 0.36);
|
|
190
|
+
--nav-inset: rgba(255, 255, 255, 0.05);
|
|
191
|
+
--nav-logo-wordmark: var(--nav-fg);
|
|
192
|
+
--nav-logo-mark: var(--primary);
|
|
193
|
+
--footer-bg: #050B12;
|
|
194
|
+
--footer-fg: #EDF4FB;
|
|
195
|
+
--footer-muted: rgba(237, 244, 251, 0.72);
|
|
196
|
+
--footer-faint: rgba(237, 244, 251, 0.42);
|
|
197
|
+
--footer-line: rgba(255, 255, 255, 0.1);
|
|
198
|
+
--btn-bg: #5EA8D7;
|
|
199
|
+
--btn-hover: #4A90C2;
|
|
200
|
+
--hero-gradient: linear-gradient(180deg, #08111A 0%, #10263A 56%, #0A1724 100%);
|
|
201
|
+
--landing-hero-bg: linear-gradient(180deg, #08111A 0%, #10263A 56%, #0A1724 100%);
|
|
202
|
+
--secondary-surface: rgba(116, 184, 226, 0.12);
|
|
203
|
+
--showcase-bg: #101821;
|
|
204
|
+
--overlay: rgba(2, 6, 12, 0.56);
|
|
205
|
+
--shadow-strong: 0 18px 64px rgba(0, 0, 0, 0.42);
|
|
206
|
+
--terminal-bg: #0B1017;
|
|
207
|
+
--terminal-panel: #121A24;
|
|
208
|
+
--terminal-line: #263445;
|
|
209
|
+
--terminal-fg: #D7E0EA;
|
|
210
|
+
--terminal-muted: #7F8B99;
|
|
211
|
+
--terminal-keyword: #7EB8DA;
|
|
212
|
+
--terminal-string: #E4A986;
|
|
213
|
+
--terminal-type: #6BD4BC;
|
|
214
|
+
--terminal-method: #E6D78D;
|
|
215
|
+
--agent-card-bg: rgba(9, 17, 27, 0.84);
|
|
216
|
+
--agent-card-header: rgba(15, 28, 40, 0.94);
|
|
217
|
+
--agent-card-border: rgba(116, 184, 226, 0.16);
|
|
218
|
+
--agent-card-border-active: rgba(116, 184, 226, 0.3);
|
|
219
|
+
--agent-card-title: #DBE9F4;
|
|
220
|
+
--agent-card-muted: #93A7B9;
|
|
221
|
+
--agent-card-status: #63D18B;
|
|
222
|
+
--agent-card-glow: rgba(99, 209, 139, 0.28);
|
|
223
|
+
--syntax-string: #F2B17A;
|
|
224
|
+
--syntax-method: #C9A7FF;
|
|
225
|
+
--syntax-comment: #7C8A9B;
|
|
226
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agent-relay/brand",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Shared brand tokens, CSS variables, and color system for Agent Relay and associated properties",
|
|
5
|
+
"main": "brand.css",
|
|
6
|
+
"style": "brand.css",
|
|
7
|
+
"files": [
|
|
8
|
+
"brand.css",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": "./brand.css",
|
|
13
|
+
"./brand.css": "./brand.css"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/AgentWorkforce/relay",
|
|
18
|
+
"directory": "packages/brand"
|
|
19
|
+
}
|
|
20
|
+
}
|