fabrica

hanna/fabrica

1346 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 * dark — the default theme, based on the IBM Carbon Gray 100 palette. Defines
6 * every documented --fb-* token; base.css is structure-only and reads
7 * exclusively from these. See docs/theming.md. */
8
9:root {
10 --fb-color-scheme: dark;
11
12 /* Surfaces & text (Carbon Gray 100 layers) */
13 --fb-bg: #161616;
14 --fb-bg-raised: #262626;
15 --fb-bg-inset: #393939;
16 --fb-border: #393939;
17 --fb-fg: #f4f4f4;
18 --fb-fg-muted: #a8a8a8;
19
20 /* Accents & status */
21 --fb-accent: #4589ff;
22 --fb-accent-fg: #ffffff;
23 --fb-success: #42be65;
24 --fb-warning: #f1c21b;
25 --fb-danger: #fa4d56;
26
27 /* Diff row backgrounds & gutters */
28 --fb-diff-add-bg: rgba(66, 190, 101, 0.15);
29 --fb-diff-del-bg: rgba(250, 77, 86, 0.15);
30 --fb-diff-add-fg: #42be65;
31 --fb-diff-del-fg: #fa4d56;
32
33 /* Syntax highlighting */
34 --fb-hl-keyword: #ff7eb6;
35 --fb-hl-function: #82cfff;
36 --fb-hl-type: #3ddbd9;
37 --fb-hl-string: #a7f0ba;
38 --fb-hl-number: #f1c21b;
39 --fb-hl-comment: #8d8d8d;
40 --fb-hl-constant: #d4bbff;
41 --fb-hl-variable: #f4f4f4;
42 --fb-hl-operator: #ff7eb6;
43 --fb-hl-punctuation: #c6c6c6;
44 --fb-hl-attribute: #3ddbd9;
45 --fb-hl-tag: #82cfff;
46}