-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy paththeme.schema.json
More file actions
108 lines (108 loc) · 2.81 KB
/
theme.schema.json
File metadata and controls
108 lines (108 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Termy Theme Colors",
"description": "Color scheme for Termy terminal emulator",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"description": "JSON Schema reference"
},
"foreground": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "Default text color"
},
"background": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "Terminal background color"
},
"cursor": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "Cursor color"
},
"black": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 0 (black)"
},
"red": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 1 (red)"
},
"green": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 2 (green)"
},
"yellow": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 3 (yellow)"
},
"blue": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 4 (blue)"
},
"magenta": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 5 (magenta)"
},
"cyan": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 6 (cyan)"
},
"white": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 7 (white)"
},
"bright_black": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 8 (bright black / gray)"
},
"bright_red": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 9 (bright red)"
},
"bright_green": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 10 (bright green)"
},
"bright_yellow": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 11 (bright yellow)"
},
"bright_blue": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 12 (bright blue)"
},
"bright_magenta": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 13 (bright magenta)"
},
"bright_cyan": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 14 (bright cyan)"
},
"bright_white": {
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$",
"description": "ANSI color 15 (bright white)"
}
},
"additionalProperties": false
}