...
1 package d2themescatalog
2
3 import "oss.terrastruct.com/d2/d2themes"
4
5 var TerminalGrayscale = d2themes.Theme{
6 ID: 301,
7 Name: "Terminal Grayscale",
8 Colors: d2themes.ColorPalette{
9 Neutrals: TerminalGrayscaleNeutral,
10
11 B1: "#000410",
12 B2: "#000410",
13 B3: "#FFFFFF",
14 B4: "#E7E9EE",
15 B5: "#F5F6F9",
16 B6: "#FFFFFF",
17
18 AA2: "#6D7284",
19 AA4: "#F5F6F9",
20 AA5: "#FFFFFF",
21
22 AB4: "#F5F6F9",
23 AB5: "#FFFFFF",
24 },
25 SpecialRules: d2themes.SpecialRules{
26 Mono: true,
27 NoCornerRadius: true,
28 OuterContainerDoubleBorder: true,
29 ContainerDots: true,
30 CapsLock: true,
31 },
32 }
33
34 var TerminalGrayscaleNeutral = d2themes.Neutral{
35 N1: "#000410",
36 N2: "#000410",
37 N3: "#9499AB",
38 N4: "#FFFFFF",
39 N5: "#FFFFFF",
40 N6: "#EEF1F8",
41 N7: "#FFFFFF",
42 }
43
View as plain text