Skip to content

Commit 74fe987

Browse files
committed
neutral grey
1 parent a193bd3 commit 74fe987

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
path: node
142142

143143
- name: Build docs
144-
run: npx doc-kit generate -t web -i "./node/doc/api/assert.md" -o out
144+
run: npx doc-kit generate -t web -i "./node/doc/api/assert.md" -o out --config-file ./e2e/doc-kit.config.mjs
145145

146146
- name: Install Playwright browsers
147147
run: npx playwright install --with-deps

e2e/doc-kit.config.mjs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default {
2+
html: {
3+
// The announcement banner under test is opt-in: point it at the URL the
4+
// spec intercepts (no real request is made).
5+
remoteConfigUrl: 'https://nodejs.org/site.json',
6+
},
7+
};

packages/react/src/html/ui/index.css

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,20 @@
44
@import '@node-core/ui-components/styles/index.css';
55
@import '@node-core/rehype-shiki/index.css';
66

7-
/* Fonts */
7+
/* Variables */
88
:root {
99
--font-open-sans: 'Open Sans Variable', sans-serif;
1010
--font-ibm-plex-mono: 'IBM Plex Mono', monospace;
11+
12+
--color-brand-100: #f4f4f5;
13+
--color-brand-200: #e4e4e7;
14+
--color-brand-300: #c9c9ce;
15+
--color-brand-400: #a8a8af;
16+
--color-brand-500: #83838c;
17+
--color-brand-600: #62626b;
18+
--color-brand-700: #4b4b53;
19+
--color-brand-800: #3a3a41;
20+
--color-brand-900: #27272b;
1121
}
1222

1323
is-land,

0 commit comments

Comments
 (0)