@agent-relay/brand 7.1.1 → 8.0.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/README.md +1 -1
- package/brand.css +90 -90
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ This is a pure CSS package — no build step required.
|
|
|
15
15
|
### Link directly (HTML)
|
|
16
16
|
|
|
17
17
|
```html
|
|
18
|
-
<link rel="stylesheet" href="node_modules/@agent-relay/brand/brand.css"
|
|
18
|
+
<link rel="stylesheet" href="node_modules/@agent-relay/brand/brand.css" />
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
### Static sites without a bundler
|
package/brand.css
CHANGED
|
@@ -9,59 +9,59 @@
|
|
|
9
9
|
|
|
10
10
|
:root {
|
|
11
11
|
/* Logo */
|
|
12
|
-
--logo-primary: #
|
|
12
|
+
--logo-primary: #4a90c2;
|
|
13
13
|
--logo-secondary: rgba(74, 144, 194, 0.5);
|
|
14
14
|
|
|
15
15
|
/* Brand accents */
|
|
16
|
-
--accent-warm: #
|
|
17
|
-
--accent-warm-deep: #
|
|
18
|
-
--accent-warm-soft: #
|
|
16
|
+
--accent-warm: #c1674b;
|
|
17
|
+
--accent-warm-deep: #b45542;
|
|
18
|
+
--accent-warm-soft: #cd866a;
|
|
19
19
|
|
|
20
20
|
--accent-ink: #111827;
|
|
21
|
-
--accent-stone: #
|
|
22
|
-
--accent-stone-light: #
|
|
23
|
-
--accent-stone-dark: #
|
|
21
|
+
--accent-stone: #7a7a72;
|
|
22
|
+
--accent-stone-light: #f5f4f0;
|
|
23
|
+
--accent-stone-dark: #5a5a54;
|
|
24
24
|
|
|
25
25
|
/* Status */
|
|
26
|
-
--status-red: #
|
|
27
|
-
--status-yellow: #
|
|
28
|
-
--status-green: #
|
|
26
|
+
--status-red: #ff5f57;
|
|
27
|
+
--status-yellow: #febc2e;
|
|
28
|
+
--status-green: #28c840;
|
|
29
29
|
|
|
30
30
|
/* Console / terminal */
|
|
31
|
-
--console-bg: #
|
|
32
|
-
--console-panel: #
|
|
33
|
-
--console-line: #
|
|
34
|
-
--console-fg: #
|
|
31
|
+
--console-bg: #1a1c22;
|
|
32
|
+
--console-panel: #15171c;
|
|
33
|
+
--console-line: #2a2d35;
|
|
34
|
+
--console-fg: #c9d1d9;
|
|
35
35
|
--console-muted: #555555;
|
|
36
|
-
--console-keyword: #
|
|
37
|
-
--console-string: #
|
|
38
|
-
--console-type: #
|
|
39
|
-
--console-method: #
|
|
36
|
+
--console-keyword: #7eb8da;
|
|
37
|
+
--console-string: #ce9178;
|
|
38
|
+
--console-type: #4ec9b0;
|
|
39
|
+
--console-method: #dcdcaa;
|
|
40
40
|
|
|
41
41
|
/* Primary (Curious Blue) scale */
|
|
42
|
-
--primary-50: #
|
|
43
|
-
--primary-100: #
|
|
44
|
-
--primary-200: #
|
|
45
|
-
--primary-300: #
|
|
46
|
-
--primary-400: #
|
|
47
|
-
--primary-500: #
|
|
48
|
-
--primary-600: #
|
|
49
|
-
--primary-700: #
|
|
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
50
|
--primary-800: #234969;
|
|
51
|
-
--primary-900: #
|
|
52
|
-
--primary-950: #
|
|
51
|
+
--primary-900: #223e58;
|
|
52
|
+
--primary-950: #16283b;
|
|
53
53
|
|
|
54
54
|
/* Secondary (warm) scale */
|
|
55
|
-
--secondary-50: #
|
|
56
|
-
--secondary-100: #
|
|
57
|
-
--secondary-200: #
|
|
58
|
-
--secondary-300: #
|
|
59
|
-
--secondary-400: #
|
|
60
|
-
--secondary-500: #
|
|
61
|
-
--secondary-600: #
|
|
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
62
|
--secondary-700: #964338;
|
|
63
63
|
--secondary-800: #793833;
|
|
64
|
-
--secondary-900: #
|
|
64
|
+
--secondary-900: #62302c;
|
|
65
65
|
--secondary-950: #341716;
|
|
66
66
|
|
|
67
67
|
/* Neutral (Pampas) scale */
|
|
@@ -78,27 +78,27 @@
|
|
|
78
78
|
--neutral-950: #2d211d;
|
|
79
79
|
|
|
80
80
|
/* Semantic tokens */
|
|
81
|
-
--bg: #
|
|
81
|
+
--bg: #f9fafb;
|
|
82
82
|
--bg-elevated: rgba(255, 255, 255, 0.8);
|
|
83
83
|
--fg: #111827;
|
|
84
|
-
--fg-muted: #
|
|
85
|
-
--fg-faint: #
|
|
84
|
+
--fg-muted: #4b5563;
|
|
85
|
+
--fg-faint: #9ca3af;
|
|
86
86
|
--primary: var(--primary-500);
|
|
87
87
|
--primary-hover: var(--primary-600);
|
|
88
88
|
--primary-bg: var(--primary-500);
|
|
89
89
|
--primary-fg: #ffffff;
|
|
90
90
|
--secondary-bg: var(--secondary-100);
|
|
91
91
|
--secondary-fg: var(--secondary-600);
|
|
92
|
-
--line: rgba(74, 144, 194, 0.
|
|
93
|
-
--surface: #
|
|
94
|
-
--surface-strong: #
|
|
92
|
+
--line: rgba(74, 144, 194, 0.1);
|
|
93
|
+
--surface: #f3f4f6;
|
|
94
|
+
--surface-strong: #ffffff;
|
|
95
95
|
--section-bg: #ffffff;
|
|
96
|
-
--code-bg: #
|
|
97
|
-
--code-fg: #
|
|
96
|
+
--code-bg: #f3f4f6;
|
|
97
|
+
--code-fg: #1f2937;
|
|
98
98
|
--inline-code-bg: rgba(74, 144, 194, 0.07);
|
|
99
99
|
--inline-code-fg: var(--primary-800);
|
|
100
100
|
--card-bg: rgba(255, 255, 255, 0.9);
|
|
101
|
-
--card-border: rgba(74, 144, 194, 0.
|
|
101
|
+
--card-border: rgba(74, 144, 194, 0.1);
|
|
102
102
|
--card-hover-border: rgba(74, 144, 194, 0.28);
|
|
103
103
|
--note-bg: rgba(74, 144, 194, 0.05);
|
|
104
104
|
--link-underline: rgba(74, 144, 194, 0.3);
|
|
@@ -125,8 +125,8 @@
|
|
|
125
125
|
--btn-hover: var(--primary-600);
|
|
126
126
|
--hero-gradient: linear-gradient(180deg, var(--bg) 0%, var(--primary-50) 100%);
|
|
127
127
|
--landing-hero-bg: linear-gradient(180deg, #f3f8fc 0%, #e8f1f8 18%, #d4e4f1 54%, #b5cee2 100%);
|
|
128
|
-
--secondary-surface: #
|
|
129
|
-
--showcase-bg: #
|
|
128
|
+
--secondary-surface: #ebf3f8;
|
|
129
|
+
--showcase-bg: #f2efe9;
|
|
130
130
|
--overlay: rgba(0, 0, 0, 0.3);
|
|
131
131
|
--shadow-strong: 0 16px 64px rgba(0, 0, 0, 0.2);
|
|
132
132
|
--terminal-bg: var(--console-bg);
|
|
@@ -140,37 +140,37 @@
|
|
|
140
140
|
--terminal-method: var(--console-method);
|
|
141
141
|
--agent-card-bg: rgba(255, 255, 255, 0.88);
|
|
142
142
|
--agent-card-header: rgba(245, 243, 238, 0.95);
|
|
143
|
-
--agent-card-border: rgba(45, 79, 62, 0.
|
|
143
|
+
--agent-card-border: rgba(45, 79, 62, 0.1);
|
|
144
144
|
--agent-card-border-active: rgba(45, 79, 62, 0.22);
|
|
145
|
-
--agent-card-title: #
|
|
146
|
-
--agent-card-muted: #
|
|
147
|
-
--agent-card-status: #
|
|
145
|
+
--agent-card-title: #2d4f3e;
|
|
146
|
+
--agent-card-muted: #8a907e;
|
|
147
|
+
--agent-card-status: #3a8c62;
|
|
148
148
|
--agent-card-glow: rgba(58, 140, 98, 0.35);
|
|
149
|
-
--syntax-string: #
|
|
150
|
-
--syntax-method: #
|
|
151
|
-
--syntax-comment: #
|
|
149
|
+
--syntax-string: #b45309;
|
|
150
|
+
--syntax-method: #6b21a8;
|
|
151
|
+
--syntax-comment: #9ca3af;
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
:root[data-theme='dark'] {
|
|
155
|
-
--bg: #
|
|
155
|
+
--bg: #08111a;
|
|
156
156
|
--bg-elevated: rgba(12, 20, 30, 0.82);
|
|
157
|
-
--fg: #
|
|
158
|
-
--fg-muted: #
|
|
159
|
-
--fg-faint: #
|
|
160
|
-
--primary: #
|
|
161
|
-
--primary-hover: #
|
|
162
|
-
--primary-bg: #
|
|
163
|
-
--primary-fg: #
|
|
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
164
|
--secondary-bg: rgba(193, 103, 75, 0.14);
|
|
165
|
-
--secondary-fg: #
|
|
165
|
+
--secondary-fg: #f0b39f;
|
|
166
166
|
--line: rgba(116, 184, 226, 0.18);
|
|
167
|
-
--surface: #
|
|
167
|
+
--surface: #0f1b29;
|
|
168
168
|
--surface-strong: #132234;
|
|
169
|
-
--section-bg: #
|
|
170
|
-
--code-bg: #
|
|
171
|
-
--code-fg: #
|
|
169
|
+
--section-bg: #0b141f;
|
|
170
|
+
--code-bg: #0d1723;
|
|
171
|
+
--code-fg: #dbe5f0;
|
|
172
172
|
--inline-code-bg: rgba(116, 184, 226, 0.14);
|
|
173
|
-
--inline-code-fg: #
|
|
173
|
+
--inline-code-fg: #c6e6fa;
|
|
174
174
|
--card-bg: rgba(15, 27, 41, 0.84);
|
|
175
175
|
--card-border: rgba(116, 184, 226, 0.16);
|
|
176
176
|
--card-hover-border: rgba(116, 184, 226, 0.32);
|
|
@@ -178,49 +178,49 @@
|
|
|
178
178
|
--link-underline: rgba(116, 184, 226, 0.35);
|
|
179
179
|
--nav-solid-bg: #0c1c2a;
|
|
180
180
|
--nav-bg: rgba(12, 28, 42, 0.92);
|
|
181
|
-
--nav-fg: #
|
|
181
|
+
--nav-fg: #edf4fb;
|
|
182
182
|
--nav-muted: rgba(237, 244, 251, 0.78);
|
|
183
183
|
--nav-subtle: rgba(237, 244, 251, 0.54);
|
|
184
184
|
--nav-surface: rgba(255, 255, 255, 0.06);
|
|
185
185
|
--nav-surface-hover: rgba(255, 255, 255, 0.1);
|
|
186
186
|
--nav-border: rgba(255, 255, 255, 0.14);
|
|
187
187
|
--nav-border-strong: rgba(255, 255, 255, 0.24);
|
|
188
|
-
--nav-link-hover: #
|
|
188
|
+
--nav-link-hover: #9fd4f5;
|
|
189
189
|
--nav-shadow: rgba(0, 0, 0, 0.36);
|
|
190
190
|
--nav-inset: rgba(255, 255, 255, 0.05);
|
|
191
191
|
--nav-logo-wordmark: var(--nav-fg);
|
|
192
192
|
--nav-logo-mark: var(--primary);
|
|
193
|
-
--footer-bg: #
|
|
194
|
-
--footer-fg: #
|
|
193
|
+
--footer-bg: #050b12;
|
|
194
|
+
--footer-fg: #edf4fb;
|
|
195
195
|
--footer-muted: rgba(237, 244, 251, 0.72);
|
|
196
196
|
--footer-faint: rgba(237, 244, 251, 0.42);
|
|
197
197
|
--footer-line: rgba(255, 255, 255, 0.1);
|
|
198
|
-
--btn-bg: #
|
|
199
|
-
--btn-hover: #
|
|
200
|
-
--hero-gradient: linear-gradient(180deg, #
|
|
201
|
-
--landing-hero-bg: linear-gradient(180deg, #
|
|
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
202
|
--secondary-surface: rgba(116, 184, 226, 0.12);
|
|
203
203
|
--showcase-bg: #101821;
|
|
204
204
|
--overlay: rgba(2, 6, 12, 0.56);
|
|
205
205
|
--shadow-strong: 0 18px 64px rgba(0, 0, 0, 0.42);
|
|
206
|
-
--terminal-bg: #
|
|
207
|
-
--terminal-panel: #
|
|
206
|
+
--terminal-bg: #0b1017;
|
|
207
|
+
--terminal-panel: #121a24;
|
|
208
208
|
--terminal-line: #263445;
|
|
209
|
-
--terminal-fg: #
|
|
210
|
-
--terminal-muted: #
|
|
211
|
-
--terminal-keyword: #
|
|
212
|
-
--terminal-string: #
|
|
213
|
-
--terminal-type: #
|
|
214
|
-
--terminal-method: #
|
|
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
215
|
--agent-card-bg: rgba(9, 17, 27, 0.84);
|
|
216
216
|
--agent-card-header: rgba(15, 28, 40, 0.94);
|
|
217
217
|
--agent-card-border: rgba(116, 184, 226, 0.16);
|
|
218
218
|
--agent-card-border-active: rgba(116, 184, 226, 0.3);
|
|
219
|
-
--agent-card-title: #
|
|
220
|
-
--agent-card-muted: #
|
|
221
|
-
--agent-card-status: #
|
|
219
|
+
--agent-card-title: #dbe9f4;
|
|
220
|
+
--agent-card-muted: #93a7b9;
|
|
221
|
+
--agent-card-status: #63d18b;
|
|
222
222
|
--agent-card-glow: rgba(99, 209, 139, 0.28);
|
|
223
|
-
--syntax-string: #
|
|
224
|
-
--syntax-method: #
|
|
225
|
-
--syntax-comment: #
|
|
223
|
+
--syntax-string: #f2b17a;
|
|
224
|
+
--syntax-method: #c9a7ff;
|
|
225
|
+
--syntax-comment: #7c8a9b;
|
|
226
226
|
}
|
package/package.json
CHANGED