fabrica

hanna/fabrica

1263 bytes
Raw
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
4 *
5 * light — the embedded light theme, based on the IBM Carbon White palette.
6 * Defines every documented --fb-* token. */
7
8:root {
9 --fb-color-scheme: light;
10
11 /* Surfaces & text (Carbon White layers) */
12 --fb-bg: #ffffff;
13 --fb-bg-raised: #f4f4f4;
14 --fb-bg-inset: #e0e0e0;
15 --fb-border: #e0e0e0;
16 --fb-fg: #161616;
17 --fb-fg-muted: #525252;
18
19 /* Accents & status */
20 --fb-accent: #0f62fe;
21 --fb-accent-fg: #ffffff;
22 --fb-success: #24a148;
23 --fb-warning: #b28600;
24 --fb-danger: #da1e28;
25
26 /* Diff row backgrounds & gutters */
27 --fb-diff-add-bg: rgba(36, 161, 72, 0.12);
28 --fb-diff-del-bg: rgba(218, 30, 40, 0.12);
29 --fb-diff-add-fg: #0e6027;
30 --fb-diff-del-fg: #da1e28;
31
32 /* Syntax highlighting */
33 --fb-hl-keyword: #d12771;
34 --fb-hl-function: #0f62fe;
35 --fb-hl-type: #007d79;
36 --fb-hl-string: #0e6027;
37 --fb-hl-number: #8a3ffc;
38 --fb-hl-comment: #6f6f6f;
39 --fb-hl-constant: #8a3ffc;
40 --fb-hl-variable: #a2191f;
41 --fb-hl-operator: #d12771;
42 --fb-hl-punctuation: #161616;
43 --fb-hl-attribute: #007d79;
44 --fb-hl-tag: #0f62fe;
45}