fabrica

hanna/fabrica

1356 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 * nord — a third, community-style theme. It sets ONLY the documented --fb-*
6 * tokens (docs/theming.md) and nothing else, which is the themeability
7 * acceptance test: a complete, coherent UI from tokens alone, no base.css edits. */
8
9:root {
10 --fb-color-scheme: dark;
11
12 /* Surfaces & text */
13 --fb-bg: #2e3440;
14 --fb-bg-raised: #3b4252;
15 --fb-bg-inset: #434c5e;
16 --fb-border: #4c566a;
17 --fb-fg: #eceff4;
18 --fb-fg-muted: #99a3b3;
19
20 /* Accents & status */
21 --fb-accent: #88c0d0;
22 --fb-accent-fg: #2e3440;
23 --fb-success: #a3be8c;
24 --fb-warning: #ebcb8b;
25 --fb-danger: #bf616a;
26
27 /* Diff row backgrounds & gutters */
28 --fb-diff-add-bg: rgba(163, 190, 140, 0.16);
29 --fb-diff-del-bg: rgba(191, 97, 106, 0.16);
30 --fb-diff-add-fg: #a3be8c;
31 --fb-diff-del-fg: #bf616a;
32
33 /* Syntax highlighting */
34 --fb-hl-keyword: #81a1c1;
35 --fb-hl-function: #88c0d0;
36 --fb-hl-type: #8fbcbb;
37 --fb-hl-string: #a3be8c;
38 --fb-hl-number: #b48ead;
39 --fb-hl-comment: #616e88;
40 --fb-hl-constant: #b48ead;
41 --fb-hl-variable: #d8dee9;
42 --fb-hl-operator: #81a1c1;
43 --fb-hl-punctuation: #eceff4;
44 --fb-hl-attribute: #8fbcbb;
45 --fb-hl-tag: #81a1c1;
46}