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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
{
"$schema": "https://lnav.org/schemas/config-v1.schema.json",
"ui": {
"theme-defs": {
"grayscale": {
"vars": {
"black": "#2d2a2e",
"red": "#f92772",
"green": "#a7e22e",
"yellow": "#fe9720",
"blue": "#5394ec",
"magenta": "#ae81ff",
"cyan": "#66d9ee",
"white": "#f6f6f6",
"plaintext": "#ccc"
},
"styles": {
"identifier": {
"background-color": "",
"color": "",
"bold": true
},
"text": {
"color": "",
"background-color": ""
},
"alt-text": {
"color": "",
"background-color": "",
"bold": true
},
"ok": {
"color": "$green",
"bold": true
},
"error": {
"color": "$red",
"bold": true
},
"warning": {
"color": "$yellow",
"bold": true
},
"hidden": {
"color": "$yellow",
"bold": true
},
"adjusted-time": {
"color": "$magenta"
},
"skewed-time": {
"color": "$yellow"
},
"offset-time": {
"color": "$cyan"
},
"invalid-msg": {
"color": "$yellow"
},
"focused": {
"color": "$black",
"background-color": "$plaintext"
},
"disabled-focused": {
"color": "$plaintext",
"background-color": "#333"
},
"popup": {
"color": "$plaintext",
"background-color": "#626262"
},
"scrollbar": {
"color": "$black",
"background-color": "#888"
},
"h1": {
"underline": true
},
"h2": {
"underline": true
},
"h3": {
"underline": true
},
"h4": {
"underline": true
},
"h5": {
"underline": true
},
"h6": {
"underline": true
}
},
"status-styles": {
"disabled-title": {
"color": "#5394ec",
"background-color": "#353535",
"bold": true
},
"title": {
"color": "#f6f6f6",
"background-color": "#8a8a8a",
"bold": true
},
"subtitle": {
"color": "#e4e4e4",
"background-color": "#626262",
"bold": true
},
"title-hotkey": {
"color": "$black",
"background-color": "#5394ec",
"underline": true
},
"hotkey": {
"color": "#fff",
"underline": true
},
"text": {
"color": "#f6f6f6",
"background-color": "#353535"
},
"warn": {
"color": "$yellow",
"background-color": "#353535"
},
"alert": {
"color": "$red",
"background-color": "#353535"
},
"active": {
"color": "$green",
"background-color": "#353535"
},
"info": {
"color": "#555",
"background-color": "#2f2f2f"
},
"inactive": {
"color": "#555",
"background-color": "#2f2f2f"
},
"inactive-alert": {
"color": "$red",
"background-color": "#2f2f2f"
}
},
"log-level-styles": {
"warning": {
"color": "$yellow"
},
"error": {
"color": "$red"
},
"critical": {
"color": "$red"
},
"fatal": {
"color": "$red"
}
}
}
}
}
}
|