aboutsummaryrefslogtreecommitdiff
path: root/scripts/theme-studio/face-coverage.org
blob: 4ec9cf285a6e47a5877d9cb1db6963902517181e (plain)
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
#+TITLE: theme-studio — face coverage master list
#+DATE: 2026-06-27
#+TODO: TODO DOING | DONE
#+STARTUP: overview

Every known face (live Emacs face-list union everything theme-studio manages). DONE = the
studio already themes it; TODO = not yet. Three top-level tiers:
- emacs-core: the standalone built-in faces (frame chrome, cursor, region, mode line, search).
- emacs-general: built-in Emacs subsystems (org, gnus, erc, diff, vc, custom, ...), one child each.
- one heading per third-party package installed from elpa (magit, vertico, consult, ...).
Tier is decided by where each face's defface lives: /usr/share/emacs = built-in, elpa = package.
The line under each bucket is its group/package description; the line under each face is its
Emacs docstring (first line), where one exists.

Totals: 690 / 1750 faces covered; 1709 carry a docstring. Tiers: core 1, general 75, packages 51.
Coverage tiers in the studio: syntax font-lock=23, UI tier=21, package inventory=643 (39 packages).

Mechanism to close a TODO: core/UI faces -> UI_FACES in generate.py; package + subsystem faces
-> package-inventory.json (regenerable via build-inventory.el / app_inventory.py).

* DOING emacs-core [24/75]
  Standalone built-in faces: frame chrome, cursor, region, mode line, search, line numbers, base typography.
** TODO blink-matching-paren-offscreen
   Face for showing in the echo area matched open paren that is off-screen.
** TODO bold
   Basic bold face.
** TODO bold-italic
   Basic bold-italic face.
** TODO border
   Basic face for the frame border under X.
** TODO button
   Default face used for buttons.
** TODO child-frame-border
   Basic face for the internal border of child frames.
** TODO completions-common-part
   Face for the parts of completions which matched the pattern.
** TODO completions-first-difference
   Face for the first character after point in completions.
** DONE cursor
   Basic face for the cursor color under X.
** DONE default
   Basic default face.
** DONE error
   Basic face used to highlight errors and to denote failure.
** TODO escape-glyph
   Face for characters displayed as sequences using '^' or '\'.
** TODO fill-column-indicator
   Face for displaying fill column indicator.
** DONE fixed-pitch
   The basic fixed-pitch face.
** TODO fixed-pitch-serif
   The basic fixed-pitch face with serifs.
** DONE fringe
   Basic face for the fringes to the left and right of windows under X.
** TODO glyphless-char
   Face for displaying non-graphic characters (e.g. U+202A (LRE)).
** TODO header-line
   Basic header-line face.
** TODO header-line-highlight
   Basic header line face for highlighting.
** TODO help-key-binding
   Face for keybindings in *Help* buffers.
** DONE highlight
   Basic face for highlighting.
** DONE hl-line
   Default face for highlighting the current line in Hl-Line mode.
** TODO homoglyph
   Face for lookalike characters.
** TODO internal-border
   Basic face for the internal border.
** DONE isearch
   Face for highlighting Isearch matches.
** DONE isearch-fail
   Face for highlighting failed part in Isearch echo-area message.
** TODO isearch-group-1
   Face for highlighting Isearch the odd group matches.
** TODO isearch-group-2
   Face for highlighting Isearch the even group matches.
** TODO italic
   Basic italic face.
** DONE lazy-highlight
   Face for lazy highlighting of matches other than the current one.
** DONE line-number
   Face for displaying line numbers.
** DONE line-number-current-line
   Face for displaying the current line number.
** TODO line-number-major-tick
   Face for highlighting "major ticks" (as in a ruler).
** TODO line-number-minor-tick
   Face for highlighting "minor ticks" (as in a ruler).
** DONE link
   Basic face for unvisited links.
** TODO link-visited
   Basic face for visited links.
** TODO match
   Face used to highlight matches permanently.
** TODO menu
   Basic face for the font and colors of the menu bar and popup menus.
** DONE minibuffer-prompt
   Face for minibuffer prompts.
** DONE mode-line
   Face for the mode lines as well as header lines.
** TODO mode-line-active
   Face for the selected mode line.
** TODO mode-line-buffer-id
   Face used for buffer identification parts of the mode line.
** TODO mode-line-emphasis
   Face used to emphasize certain mode line features.
** DONE mode-line-highlight
   Basic mode line face for highlighting.
** DONE mode-line-inactive
   Basic mode line face for non-selected windows.
** TODO mouse
   Basic face for the mouse color under X.
** TODO mouse-drag-and-drop-region
   Face to highlight original text during dragging.
** TODO next-error
   Face used to highlight next error locus.
** TODO nobreak-hyphen
   Face for displaying nobreak hyphens.
** TODO nobreak-space
   Face for displaying nobreak space.
** TODO query-replace
   Face for highlighting query replacement matches.
** DONE region
   Basic face for highlighting the region.
** TODO scroll-bar
   Basic face for the scroll bar colors under X.
** TODO secondary-selection
   Basic face for displaying the secondary selection.
** TODO separator-line
   Face for separator lines.
** TODO shadow
   Basic face for shadowed text.
** DONE show-paren-match
   Face used for a matching paren.
** TODO show-paren-match-expression
   Face used for a matching paren when highlighting the whole expression.
** DONE show-paren-mismatch
   Face used for a mismatching paren.
** DONE success
   Basic face used to indicate successful operation.
** TODO tool-bar
   Basic tool-bar face.
** TODO tooltip
   Face for tooltips.
** TODO trailing-whitespace
   Basic face for highlighting trailing whitespace.
** TODO tty-menu-disabled-face
   Face for displaying disabled items in TTY menus.
** TODO tty-menu-enabled-face
   Face for displaying enabled items in TTY menus.
** TODO tty-menu-selected-face
   Face for displaying the currently selected item in TTY menus.
** TODO underline
   Basic underlined face.
** DONE variable-pitch
   The basic variable-pitch face.
** TODO variable-pitch-text
   The proportional face used for longer texts.
** DONE vertical-border
   Face used for vertical window dividers on ttys.
** DONE warning
   Basic face used to highlight warnings.
** TODO window-divider
   Basic face for window dividers.
** TODO window-divider-first-pixel
   Basic face for first pixel line/column of window dividers.
** TODO window-divider-last-pixel
   Basic face for last pixel line/column of window dividers.
** TODO wttrin-instructions-header
   Face for the two column headers in the weather buffer footer.

* DOING emacs-general [23/523]
  Built-in Emacs subsystems, one child per subsystem.
** TODO abbrev [0/1]
   Abbreviation handling, typing shortcuts, macros.
*** TODO abbrev-table-name
    Face used for displaying the abbrev table name in 'edit-abbrevs-mode'.
** TODO ansi-color [0/23]
   Translating SGR control sequences to faces.
*** TODO ansi-color-black
    Face used to render black color code.
*** TODO ansi-color-blue
    Face used to render blue color code.
*** TODO ansi-color-bold
    Face used to render bold text.
*** TODO ansi-color-bright-black
    Face used to render bright black color code.
*** TODO ansi-color-bright-blue
    Face used to render bright blue color code.
*** TODO ansi-color-bright-cyan
    Face used to render bright cyan color code.
*** TODO ansi-color-bright-green
    Face used to render bright green color code.
*** TODO ansi-color-bright-magenta
    Face used to render bright magenta color code.
*** TODO ansi-color-bright-red
    Face used to render bright red color code.
*** TODO ansi-color-bright-white
    Face used to render bright white color code.
*** TODO ansi-color-bright-yellow
    Face used to render bright yellow color code.
*** TODO ansi-color-cyan
    Face used to render cyan color code.
*** TODO ansi-color-faint
    Face used to render faint text.
*** TODO ansi-color-fast-blink
    Face used to render rapidly blinking text.
*** TODO ansi-color-green
    Face used to render green color code.
*** TODO ansi-color-inverse
    Face used to render inverted video text.
*** TODO ansi-color-italic
    Face used to render italic text.
*** TODO ansi-color-magenta
    Face used to render magenta color code.
*** TODO ansi-color-red
    Face used to render red color code.
*** TODO ansi-color-slow-blink
    Face used to render slowly blinking text.
*** TODO ansi-color-underline
    Face used to render underlined text.
*** TODO ansi-color-white
    Face used to render white color code.
*** TODO ansi-color-yellow
    Face used to render yellow color code.
** TODO apropos [0/8]
   Apropos commands for users and programmers.
*** TODO apropos-button
    Face for buttons that indicate a face in Apropos.
*** TODO apropos-function-button
    Button face indicating a function, macro, or command in Apropos.
*** TODO apropos-keybinding
    Face for lists of keybinding in Apropos output.
*** TODO apropos-misc-button
    Button face indicating a miscellaneous object type in Apropos.
*** TODO apropos-property
    Face for property name in Apropos output, or nil for none.
*** TODO apropos-symbol
    Face for the symbol name in Apropos output.
*** TODO apropos-user-option-button
    Button face indicating a user option in Apropos.
*** TODO apropos-variable-button
    Button face indicating a variable in Apropos.
** TODO bookmark [0/2]
   Setting, annotation and jumping to bookmarks.
*** TODO bookmark-face
    Face used to highlight current line.
*** TODO bookmark-menu-bookmark
    Face used to highlight bookmark names in bookmark menu buffers.
** TODO breakpoint [0/2]
*** TODO breakpoint-disabled
    Face for disabled breakpoint icon in fringe.
*** TODO breakpoint-enabled
    Face for enabled breakpoint icon in fringe.
** TODO browse [0/1]
*** TODO browse-url-button
    Face for 'browse-url' buttons (i.e., links).
** TODO buffer [0/1]
*** TODO buffer-menu-buffer
    Face for buffer names in the Buffer Menu.
** TODO calendar [0/4]
   Calendar and time management support.
*** TODO calendar-month-header
    Face used for month headers in the calendar.
*** TODO calendar-today
    Face for indicating today's date in the calendar.
*** TODO calendar-weekday-header
    Face used for weekday column headers in the calendar.
*** TODO calendar-weekend-header
    Face used for weekend column headers in the calendar.
** TODO change-log [0/8]
   Change log maintenance.
*** TODO change-log-acknowledgment
    Face for highlighting acknowledgments.
*** TODO change-log-conditionals
    Face for highlighting conditionals of the form '[...]'.
*** TODO change-log-date
    Face used to highlight dates in date lines.
*** TODO change-log-email
    Face for highlighting author email addresses.
*** TODO change-log-file
    Face for highlighting file names.
*** TODO change-log-function
    Face for highlighting items of the form '<....>'.
*** TODO change-log-list
    Face for highlighting parenthesized lists of functions or variables.
*** TODO change-log-name
    Face for highlighting author names.
** TODO comint [0/2]
   General command interpreter in a window stuff.
*** TODO comint-highlight-input
    Face to use to highlight user input.
*** TODO comint-highlight-prompt
    Face to use to highlight prompts.
** TODO compilation [0/8]
   Run compiler as inferior of Emacs, parse error messages.
*** TODO compilation-column-number
    Face for displaying column numbers in compiler messages.
*** TODO compilation-error
    Face used to highlight compiler errors.
*** TODO compilation-info
    Face used to highlight compiler information.
*** TODO compilation-line-number
    Face for displaying line numbers in compiler messages.
*** TODO compilation-mode-line-exit
    Face for Compilation mode's "exit" mode line indicator.
*** TODO compilation-mode-line-fail
    Face for Compilation mode's "error" mode line indicator.
*** TODO compilation-mode-line-run
    Face for Compilation mode's "running" mode line indicator.
*** TODO compilation-warning
    Face used to highlight compiler warnings.
** TODO completions [0/4]
   Faces for the default *Completions* buffer.
*** TODO completions-annotations
    Face to use for annotations in the *Completions* buffer.
*** TODO completions-group-separator
    Face used for the separator lines between the candidate groups.
*** TODO completions-group-title
    Face used for the title text of the candidate group headlines.
*** TODO completions-highlight
    Default face for highlighting the current completion candidate.
** TODO confusingly [0/1]
*** TODO confusingly-reordered
    Face for highlighting text that was bidi-reordered in confusing ways.
** TODO custom [0/25]
   Faces used by customize.
*** TODO custom-button
    Face for custom buffer buttons if 'custom-raised-buttons' is non-nil.
*** TODO custom-button-mouse
    Mouse face for custom buffer buttons if 'custom-raised-buttons' is non-nil.
*** TODO custom-button-pressed
    Face for pressed custom buttons if 'custom-raised-buttons' is non-nil.
*** TODO custom-button-pressed-unraised
    Face for pressed custom buttons if 'custom-raised-buttons' is nil.
*** TODO custom-button-unraised
    Face for custom buffer buttons if 'custom-raised-buttons' is nil.
*** TODO custom-changed
    Face used when the customize item has been changed.
*** TODO custom-comment
    Face used for comments on variables or faces.
*** TODO custom-comment-tag
    Face used for the comment tag on variables or faces.
*** TODO custom-documentation
    Face used for documentation strings in customization buffers.
*** TODO custom-face-tag
    Face used for face tags.
*** TODO custom-group-subtitle
    Face for the "Subgroups:" subtitle in Custom buffers.
*** TODO custom-group-tag
    Face for low level group tags.
*** TODO custom-group-tag-1
    Face for group tags.
*** TODO custom-invalid
    Face used when the customize item is invalid.
*** TODO custom-link
    Face for links in customization buffers.
*** TODO custom-modified
    Face used when the customize item has been modified.
*** TODO custom-rogue
    Face used when the customize item is not defined for customization.
*** TODO custom-saved
    Face used when the customize item has been saved.
*** TODO custom-set
    Face used when the customize item has been set.
*** TODO custom-state
    Face used for State descriptions in the customize buffer.
*** TODO custom-themed
    Face used when the customize item has been set by a theme.
*** TODO custom-variable-button
    Face used for pushable variable tags.
*** TODO custom-variable-obsolete
    Face used for obsolete variables.
*** TODO custom-variable-tag
    Face used for unpushable variable tags.
*** TODO custom-visibility
    Face for the 'custom-visibility' widget.
** TODO diary [0/4]
   Emacs diary.
*** TODO diary
    Face for highlighting diary entries.
*** TODO diary-anniversary
    Face used for anniversaries in the fancy diary display.
*** TODO diary-button
    Face used for buttons in the fancy diary display.
*** TODO diary-time
    Face used for times of day in the fancy diary display.
** TODO diff [0/18]
   Comparing files with `diff'.
*** TODO diff-added
    'diff-mode' face used to highlight added lines.
*** TODO diff-changed
    'diff-mode' face used to highlight changed lines.
*** TODO diff-changed-unspecified
    'diff-mode' face used to highlight changed lines.
*** TODO diff-context
    'diff-mode' face used to highlight context and other side-information.
*** TODO diff-error
    'diff-mode' face for error messages from diff.
*** TODO diff-file-header
    'diff-mode' face used to highlight file header lines.
*** TODO diff-function
    'diff-mode' face used to highlight function names produced by "diff -p".
*** TODO diff-header
    'diff-mode' face inherited by hunk and index header faces.
*** TODO diff-hunk-header
    'diff-mode' face used to highlight hunk header lines.
*** TODO diff-index
    'diff-mode' face used to highlight index header lines.
*** TODO diff-indicator-added
    'diff-mode' face used to highlight indicator of added lines (+, >).
*** TODO diff-indicator-changed
    'diff-mode' face used to highlight indicator of changed lines.
*** TODO diff-indicator-removed
    'diff-mode' face used to highlight indicator of removed lines (-, <).
*** TODO diff-nonexistent
    'diff-mode' face used to highlight nonexistent files in recursive diffs.
*** TODO diff-refine-added
    Face used for added characters shown by 'diff-refine-hunk'.
*** TODO diff-refine-changed
    Face used for char-based changes shown by 'diff-refine-hunk'.
*** TODO diff-refine-removed
    Face used for removed characters shown by 'diff-refine-hunk'.
*** TODO diff-removed
    'diff-mode' face used to highlight removed lines.
** TODO dired [0/12]
   Directory editing.
*** TODO dired-broken-symlink
    Face used for broken symbolic links.
*** TODO dired-directory
    Face used for subdirectories.
*** TODO dired-flagged
    Face used for files flagged for deletion.
*** TODO dired-header
    Face used for directory headers.
*** TODO dired-ignored
    Face used for files suffixed with 'completion-ignored-extensions'.
*** TODO dired-mark
    Face used for Dired marks.
*** TODO dired-marked
    Face used for marked files.
*** TODO dired-perm-write
    Face used to highlight permissions of group- and world-writable files.
*** TODO dired-set-id
    Face used to highlight permissions of suid and guid files.
*** TODO dired-special
    Face used for sockets, pipes, block devices and char devices.
*** TODO dired-symlink
    Face used for symbolic links.
*** TODO dired-warning
    Face used to highlight a part of a buffer that needs user attention.
** TODO doc [0/1]
   Support for Emacs documentation.
*** TODO doc-view-svg-face
    Face used for SVG images.
** TODO edmacro [0/1]
*** TODO edmacro-label
    Face used for labels in 'edit-kbd-macro'.
** TODO eldoc [0/1]
   Show function arglist or variable docstring in echo area.
*** TODO eldoc-highlight-function-argument
    Face used for the argument at point in a function's argument list.
** TODO elisp [0/1]
*** TODO elisp-shorthand-font-lock-face
    Face for highlighting shorthands in Emacs Lisp.
** TODO epa [0/8]
   The EasyPG Assistant.
*** TODO epa-field-body
    Face for the body of the attribute field.
*** TODO epa-field-name
    Face for the name of the attribute field.
*** TODO epa-mark
    Face used for displaying the high validity.
*** TODO epa-string
    Face used for displaying the string.
*** TODO epa-validity-disabled
    Face used for displaying the disabled validity.
*** TODO epa-validity-high
    Face for high validity EPA information.
*** TODO epa-validity-low
    Face used for displaying the low validity.
*** TODO epa-validity-medium
    Face for medium validity EPA information.
** TODO ert [0/2]
   ERT, the Emacs Lisp regression testing tool.
*** TODO ert-test-result-expected
    Face used for expected results in the ERT results buffer.
*** TODO ert-test-result-unexpected
    Face used for unexpected results in the ERT results buffer.
** TODO eww [0/8]
   Emacs Web Wowser.
*** TODO eww-form-checkbox
    Face for eww buffer buttons.
*** TODO eww-form-file
    Face for eww buffer buttons.
*** TODO eww-form-select
    Face for eww buffer buttons.
*** TODO eww-form-submit
    Face for eww buffer buttons.
*** TODO eww-form-text
    Face for eww text inputs.
*** TODO eww-form-textarea
    Face for eww textarea inputs.
*** TODO eww-invalid-certificate
    Face for web pages with invalid certificates.
*** TODO eww-valid-certificate
    Face for web pages with valid certificates.
** TODO ffap [0/1]
   Find file or URL at point.
*** TODO ffap
    Face used to highlight the current buffer substring.
** TODO file [0/1]
   Support for editing files.
*** TODO file-name-shadow
    Face used by 'file-name-shadow-mode' for the shadow.
** TODO flyspell [0/2]
   Spell checking on the fly.
*** TODO flyspell-duplicate
    Flyspell face for words that appear twice in a row.
*** TODO flyspell-incorrect
    Flyspell face for misspelled words.
** DOING font-lock [23/28]
   Font Lock mode text highlighting package.
*** DONE font-lock-bracket-face
    Font Lock mode face used to highlight brackets, braces, and parens.
*** DONE font-lock-builtin-face
    Font Lock mode face used to highlight builtins.
*** DONE font-lock-comment-delimiter-face
    Font Lock mode face used to highlight comment delimiters.
*** DONE font-lock-comment-face
    Font Lock mode face used to highlight comments.
*** DONE font-lock-constant-face
    Font Lock mode face used to highlight constants and labels.
*** DONE font-lock-delimiter-face
    Font Lock mode face used to highlight delimiters.
*** DONE font-lock-doc-face
    Font Lock mode face used to highlight documentation embedded in program code.
*** TODO font-lock-doc-markup-face
    Font Lock mode face used to highlight embedded documentation mark-up.
*** DONE font-lock-escape-face
    Font Lock mode face used to highlight escape sequences in strings.
*** DONE font-lock-function-call-face
    Font Lock mode face used to highlight function calls.
*** DONE font-lock-function-name-face
    Font Lock mode face used to highlight function names.
*** DONE font-lock-keyword-face
    Font Lock mode face used to highlight keywords.
*** DONE font-lock-misc-punctuation-face
    Font Lock mode face used to highlight miscellaneous punctuation.
*** TODO font-lock-negation-char-face
    Font Lock mode face used to highlight easy to overlook negation.
*** DONE font-lock-number-face
    Font Lock mode face used to highlight numbers.
*** DONE font-lock-operator-face
    Font Lock mode face used to highlight operators.
*** DONE font-lock-preprocessor-face
    Font Lock mode face used to highlight preprocessor directives.
*** DONE font-lock-property-name-face
    Font Lock mode face used to highlight properties of an object.
*** DONE font-lock-property-use-face
    Font Lock mode face used to highlight property references.
*** DONE font-lock-punctuation-face
    Font Lock mode face used to highlight punctuation characters.
*** DONE font-lock-regexp-face
    Font Lock mode face used to highlight regexp literals.
*** TODO font-lock-regexp-grouping-backslash
    Font Lock mode face for backslashes in Lisp regexp grouping constructs.
*** TODO font-lock-regexp-grouping-construct
    Font Lock mode face used to highlight grouping constructs in Lisp regexps.
*** DONE font-lock-string-face
    Font Lock mode face used to highlight strings.
*** DONE font-lock-type-face
    Font Lock mode face used to highlight type and class names.
*** DONE font-lock-variable-name-face
    Font Lock mode face used to highlight variable names.
*** DONE font-lock-variable-use-face
    Font Lock mode face used to highlight variable references.
*** TODO font-lock-warning-face
    Font Lock mode face used to highlight warnings.
** TODO gnus-button [0/1]
   The coffee-brewing, all singing, all dancing, kitchen sink newsreader.
*** TODO gnus-button
    Face used for highlighting a button in the article buffer.
** TODO gnus-emphasis [0/9]
   The coffee-brewing, all singing, all dancing, kitchen sink newsreader.
*** TODO gnus-emphasis-bold
    Face used for displaying strong emphasized text (*word*).
*** TODO gnus-emphasis-bold-italic
    Face used for displaying bold italic emphasized text (/*word*/).
*** TODO gnus-emphasis-highlight-words
    Face used for displaying highlighted words.
*** TODO gnus-emphasis-italic
    Face used for displaying italic emphasized text (/word/).
*** TODO gnus-emphasis-strikethru
    Face used for displaying strike-through text (-word-).
*** TODO gnus-emphasis-underline
    Face used for displaying underlined emphasized text (_word_).
*** TODO gnus-emphasis-underline-bold
    Face used for displaying underlined bold emphasized text (_*word*_).
*** TODO gnus-emphasis-underline-bold-italic
    Face used for displaying underlined bold italic emphasized text.
*** TODO gnus-emphasis-underline-italic
    Face used for displaying underlined italic emphasized text (_/word/_).
** TODO gnus-group [0/22]
   Group buffers.
*** TODO gnus-group-mail-1
    Level 1 mailgroup face.
*** TODO gnus-group-mail-1-empty
    Level 1 empty mailgroup face.
*** TODO gnus-group-mail-2
    Level 2 mailgroup face.
*** TODO gnus-group-mail-2-empty
    Level 2 empty mailgroup face.
*** TODO gnus-group-mail-3
    Level 3 mailgroup face.
*** TODO gnus-group-mail-3-empty
    Level 3 empty mailgroup face.
*** TODO gnus-group-mail-low
    Low level mailgroup face.
*** TODO gnus-group-mail-low-empty
    Low level empty mailgroup face.
*** TODO gnus-group-news-1
    Level 1 newsgroup face.
*** TODO gnus-group-news-1-empty
    Level 1 empty newsgroup face.
*** TODO gnus-group-news-2
    Level 2 newsgroup face.
*** TODO gnus-group-news-2-empty
    Level 2 empty newsgroup face.
*** TODO gnus-group-news-3
    Level 3 newsgroup face.
*** TODO gnus-group-news-3-empty
    Level 3 empty newsgroup face.
*** TODO gnus-group-news-4
    Level 4 newsgroup face.
*** TODO gnus-group-news-4-empty
    Level 4 empty newsgroup face.
*** TODO gnus-group-news-5
    Level 5 newsgroup face.
*** TODO gnus-group-news-5-empty
    Level 5 empty newsgroup face.
*** TODO gnus-group-news-6
    Level 6 newsgroup face.
*** TODO gnus-group-news-6-empty
    Level 6 empty newsgroup face.
*** TODO gnus-group-news-low
    Low level newsgroup face.
*** TODO gnus-group-news-low-empty
    Low level empty newsgroup face.
** TODO gnus-header [0/6]
   The coffee-brewing, all singing, all dancing, kitchen sink newsreader.
*** TODO gnus-header
    Base face used for all Gnus header faces.
*** TODO gnus-header-content
    Face used for displaying header content.
*** TODO gnus-header-from
    Face used for displaying from headers.
*** TODO gnus-header-name
    Face used for displaying header names.
*** TODO gnus-header-newsgroups
    Face used for displaying newsgroups headers.
*** TODO gnus-header-subject
    Face used for displaying subject headers.
** TODO gnus-signature [0/1]
   The coffee-brewing, all singing, all dancing, kitchen sink newsreader.
*** TODO gnus-signature
    Face used for highlighting a signature in the article buffer.
** TODO gnus-splash [0/1]
   The coffee-brewing, all singing, all dancing, kitchen sink newsreader.
*** TODO gnus-splash
    Face for the splash screen.
** TODO gnus-summary [0/17]
   Summary buffers.
*** TODO gnus-summary-cancelled
    Face used for canceled articles.
*** TODO gnus-summary-high-ancient
    Face used for high interest ancient articles.
*** TODO gnus-summary-high-read
    Face used for high interest read articles.
*** TODO gnus-summary-high-ticked
    Face used for high interest ticked articles.
*** TODO gnus-summary-high-undownloaded
    Face used for high interest uncached articles.
*** TODO gnus-summary-high-unread
    Face used for high interest unread articles.
*** TODO gnus-summary-low-ancient
    Face used for low interest ancient articles.
*** TODO gnus-summary-low-read
    Face used for low interest read articles.
*** TODO gnus-summary-low-ticked
    Face used for low interest ticked articles.
*** TODO gnus-summary-low-undownloaded
    Face used for low interest uncached articles.
*** TODO gnus-summary-low-unread
    Face used for low interest unread articles.
*** TODO gnus-summary-normal-ancient
    Face used for normal interest ancient articles.
*** TODO gnus-summary-normal-read
    Face used for normal interest read articles.
*** TODO gnus-summary-normal-ticked
    Face used for normal interest ticked articles.
*** TODO gnus-summary-normal-undownloaded
    Face used for normal interest uncached articles.
*** TODO gnus-summary-normal-unread
    Face used for normal interest unread articles.
*** TODO gnus-summary-selected
    Face used for selected articles.
** TODO grep [0/1]
   Run `grep' and display the results.
*** TODO grep-heading
    Face of headings when 'grep-use-headings' is non-nil.
** TODO gud [0/1]
   The "Grand Unified Debugger" interface.
*** TODO gud-highlight-current-line-face
    Face for highlighting the source code line being executed.
** TODO help [0/2]
   Support for Emacs help systems.
*** TODO help-argument-name
    Face to highlight argument names in *Help* buffers.
*** TODO help-for-help-header
    Face used for headers in the 'help-for-help' buffer.
** TODO holiday [0/1]
   Faces for holidays in the calendar.
*** TODO holiday
    Face for indicating in the calendar dates that have holidays.
** TODO ibuffer [0/1]
   Advanced replacement for `buffer-menu'.
*** TODO ibuffer-locked-buffer
    Face used for locked buffers in Ibuffer.
** TODO icon [0/2]
*** TODO icon
    Face for buttons.
*** TODO icon-button
    Face for buttons.
** TODO info [0/13]
   Info subsystem.
*** TODO Info-quoted
    Face used for quoted elements.
*** TODO info-header-node
    Face for Info nodes in a node header.
*** TODO info-header-xref
    Face for Info cross-references in a node header.
*** TODO info-index-match
    Face used to highlight matches in an index entry.
*** TODO info-menu-header
    Face for headers in Info menus.
*** TODO info-menu-star
    Face used to emphasize '*' in an Info menu.
*** TODO info-node
    Face for Info node names.
*** TODO info-title-1
    Face for info titles at level 1.
*** TODO info-title-2
    Face for info titles at level 2.
*** TODO info-title-3
    Face for info titles at level 3.
*** TODO info-title-4
    Face for info titles at level 4.
*** TODO info-xref
    Face for unvisited Info cross-references.
*** TODO info-xref-visited
    Face for visited Info cross-references.
** TODO kmacro [0/3]
   Simplified keyboard macro user interface.
*** TODO kmacro-menu-flagged
    Face used for keyboard macros flagged for deletion.
*** TODO kmacro-menu-mark
    Face used for the Keyboard Macro Menu marks.
*** TODO kmacro-menu-marked
    Face used for keyboard macros marked for duplication.
** TODO log [0/4]
*** TODO log-edit-header
    Face for the headers in 'log-edit-mode' buffers.
*** TODO log-edit-headers-separator
    Face for the separator line in 'log-edit-mode' buffers.
*** TODO log-edit-summary
    Face for the summary in 'log-edit-mode' buffers.
*** TODO log-edit-unknown-header
    Face for unknown headers in 'log-edit-mode' buffers.
** TODO makefile [0/4]
   Makefile editing commands for Emacs.
*** TODO makefile-makepp-perl
    Face to use for additionally highlighting Perl code in Font-Lock mode.
*** TODO makefile-shell
    Face to use for additionally highlighting Shell commands in Font-Lock mode.
*** TODO makefile-space
    Face to use for highlighting leading spaces in Font-Lock mode.
*** TODO makefile-targets
    Face to use for additionally highlighting rule targets in Font-Lock mode.
** TODO message [0/7]
   Mail and news message composing.
*** TODO message-cited-text-1
    Face used for displaying 1st-level cited text.
*** TODO message-cited-text-2
    Face used for displaying 2nd-level cited text.
*** TODO message-cited-text-3
    Face used for displaying 3rd-level cited text.
*** TODO message-cited-text-4
    Face used for displaying 4th-level cited text.
*** TODO message-mml
    Face used for displaying MML.
*** TODO message-separator
    Face used for displaying the separator.
*** TODO message-signature-separator
    Face used for displaying the signature separator.
** TODO message-header [0/7]
   Message Headers.
*** TODO message-header-cc
    Face used for displaying Cc headers.
*** TODO message-header-name
    Face used for displaying header names.
*** TODO message-header-newsgroups
    Face used for displaying Newsgroups headers.
*** TODO message-header-other
    Face used for displaying other headers.
*** TODO message-header-subject
    Face used for displaying Subject headers.
*** TODO message-header-to
    Face used for displaying To headers.
*** TODO message-header-xheader
    Face used for displaying X-Header headers.
** TODO mm [0/2]
   MIME handling faces (gnus/mm).
*** TODO mm-command-output
    Face used for displaying output from commands.
*** TODO mm-uu-extract
    Face for extracted buffers.
** TODO next [0/1]
*** TODO next-error-message
    Face used to highlight the current error message in the 'next-error' buffer.
** TODO org [0/88]
   Outline-based notes management and organizer.
*** TODO org-archived
    Face for headline with the ARCHIVE tag.
*** TODO org-checkbox
    Face for checkboxes.
*** TODO org-checkbox-statistics-done
    Face used for finished checkbox statistics.
*** TODO org-checkbox-statistics-todo
    Face used for unfinished checkbox statistics.
*** TODO org-cite
    Face for citations.
*** TODO org-cite-key
    Face for citation keys.
*** TODO org-clock-overlay
    Basic face for displaying the secondary selection.
*** TODO org-code
    Face for fixed-width text like code snippets.
*** TODO org-column
    Face for column display of entry properties.
*** TODO org-column-title
    Face for column display of entry properties.
*** TODO org-date
    Face for date/time stamps.
*** TODO org-date-selected
    Face for highlighting the calendar day when using 'org-read-date'.
*** TODO org-default
    Face used for default text.
*** TODO org-dispatcher-highlight
    Face for highlighted keys in the dispatcher.
*** TODO org-done
    Face used for todo keywords that indicate DONE items.
*** TODO org-drawer
    Face used for drawers.
*** TODO org-drill-hidden-cloze-face
    The face used to hide the contents of cloze phrases.
*** TODO org-drill-visible-cloze-face
    The face used to hide the contents of cloze phrases.
*** TODO org-drill-visible-cloze-hint-face
    The face used to hide the contents of cloze phrases.
*** TODO org-ellipsis
    Face for the ellipsis in folded text.
*** TODO org-faces-cancelled
    Face for the CANCELLED keyword.
*** TODO org-faces-cancelled-dim
    Dimmed CANCELLED keyword for non-selected windows.
*** TODO org-faces-delegated
    Face for the DELEGATED keyword.
*** TODO org-faces-delegated-dim
    Dimmed DELEGATED keyword for non-selected windows.
*** TODO org-faces-doing
    Face for the DOING keyword.
*** TODO org-faces-doing-dim
    Dimmed DOING keyword for non-selected windows.
*** TODO org-faces-done
    Face for the DONE keyword.
*** TODO org-faces-done-dim
    Dimmed DONE keyword for non-selected windows.
*** TODO org-faces-failed
    Face for the FAILED keyword.
*** TODO org-faces-failed-dim
    Dimmed FAILED keyword for non-selected windows.
*** TODO org-faces-priority-a
    Face for the [#A] priority cookie.
*** TODO org-faces-priority-a-dim
    Dimmed [#A] priority cookie for non-selected windows.
*** TODO org-faces-priority-b
    Face for the [#B] priority cookie.
*** TODO org-faces-priority-b-dim
    Dimmed [#B] priority cookie for non-selected windows.
*** TODO org-faces-priority-c
    Face for the [#C] priority cookie.
*** TODO org-faces-priority-c-dim
    Dimmed [#C] priority cookie for non-selected windows.
*** TODO org-faces-priority-d
    Face for the [#D] priority cookie.
*** TODO org-faces-priority-d-dim
    Dimmed [#D] priority cookie for non-selected windows.
*** TODO org-faces-project
    Face for the PROJECT keyword.
*** TODO org-faces-project-dim
    Dimmed PROJECT keyword for non-selected windows.
*** TODO org-faces-stalled
    Face for the STALLED keyword.
*** TODO org-faces-stalled-dim
    Dimmed STALLED keyword for non-selected windows.
*** TODO org-faces-todo
    Face for the TODO keyword.
*** TODO org-faces-todo-dim
    Dimmed TODO keyword for non-selected windows.
*** TODO org-faces-verify
    Face for the VERIFY keyword.
*** TODO org-faces-verify-dim
    Dimmed VERIFY keyword for non-selected windows.
*** TODO org-faces-waiting
    Face for the WAITING keyword.
*** TODO org-faces-waiting-dim
    Dimmed WAITING keyword for non-selected windows.
*** TODO org-footnote
    Face for footnotes.
*** TODO org-formula
    Face for formulas.
*** TODO org-headline-done
    Face used to indicate that a headline is DONE.
*** TODO org-headline-todo
    Face used to indicate that a headline is marked as TODO.
*** TODO org-hide
    Face used to hide leading stars in headlines.
*** TODO org-imminent-deadline
    Face for current deadlines in the agenda.
*** TODO org-indent
    Face for outline indentation.
*** TODO org-inline-src-block
    Face used for inline source blocks as a whole.
*** TODO org-latex-and-related
    Face used to highlight LaTeX data, entities and sub/superscript.
*** TODO org-level-1
    Face used for level 1 headlines.
*** TODO org-level-2
    Face used for level 2 headlines.
*** TODO org-level-3
    Face used for level 3 headlines.
*** TODO org-level-4
    Face used for level 4 headlines.
*** TODO org-level-5
    Face used for level 5 headlines.
*** TODO org-level-6
    Face used for level 6 headlines.
*** TODO org-level-7
    Face used for level 7 headlines.
*** TODO org-level-8
    Face used for level 8 headlines.
*** TODO org-link
    Face for links.
*** TODO org-list-dt
    Default face for definition terms in lists.
*** TODO org-macro
    Face for macros.
*** TODO org-meta-line
    Face for meta lines starting with "#+".
*** TODO org-mode-line-clock
    Face used for clock display in mode line.
*** TODO org-mode-line-clock-overrun
    Face used for clock display for overrun tasks in mode line.
*** TODO org-property-value
    Face used for the value of a property.
*** TODO org-quote
    Face for #+BEGIN_QUOTE ... #+END_QUOTE blocks.
*** TODO org-scheduled
    Face for items scheduled for a certain day.
*** TODO org-scheduled-previously
    Face for items scheduled previously, and not yet done.
*** TODO org-scheduled-today
    Face for items scheduled for a certain day.
*** TODO org-sexp-date
    Face for diary-like sexp date specifications.
*** TODO org-special-keyword
    Face used for special keywords.
*** TODO org-tag
    Default face for tags.
*** TODO org-tag-group
    Face for group tags.
*** TODO org-target
    Face for link targets.
*** TODO org-time-grid
    Face used for time grids.
*** TODO org-todo
    Face for TODO keywords.
*** TODO org-upcoming-deadline
    Face for items scheduled previously, and not yet done.
*** TODO org-upcoming-distant-deadline
    Face for items scheduled previously, not done, and have a distant deadline.
*** TODO org-verbatim
    Face for fixed-with text like code snippets.
*** TODO org-verse
    Face for #+BEGIN_VERSE ... #+END_VERSE blocks.
*** TODO org-warning
    Face for deadlines and TODO keywords.
** TODO org-agenda [0/21]
   Options concerning agenda views in Org mode.
*** TODO org-agenda-calendar-daterange
    Face used to show entries with a date range in the agenda.
*** TODO org-agenda-calendar-event
    Face used to show events and appointments in the agenda.
*** TODO org-agenda-calendar-sexp
    Face used to show events computed from a S-expression.
*** TODO org-agenda-clocking
    Face marking the current clock item in the agenda.
*** TODO org-agenda-column-dateline
    Face used in agenda column view for datelines with summaries.
*** TODO org-agenda-current-time
    Face used to show the current time in the time grid.
*** TODO org-agenda-date
    Face used in agenda for normal days.
*** TODO org-agenda-date-today
    Face used in agenda for today.
*** TODO org-agenda-date-weekend
    Face used in agenda for weekend days.
*** TODO org-agenda-date-weekend-today
    Face used in agenda for today during weekends.
*** TODO org-agenda-diary
    Face used for agenda entries that come from the Emacs diary.
*** TODO org-agenda-dimmed-todo-face
    Face used to dim blocked tasks in the agenda.
*** TODO org-agenda-done
    Face used in agenda, to indicate lines switched to DONE.
*** TODO org-agenda-filter-category
    Face for categories in the mode-line when filtering the agenda.
*** TODO org-agenda-filter-effort
    Face for effort in the mode-line when filtering the agenda.
*** TODO org-agenda-filter-regexp
    Face for regexp(s) in the mode-line when filtering the agenda.
*** TODO org-agenda-filter-tags
    Face for tag(s) in the mode-line when filtering the agenda.
*** TODO org-agenda-restriction-lock
    Face for showing the agenda restriction lock.
*** TODO org-agenda-structure
    Face used in agenda for captions and dates.
*** TODO org-agenda-structure-filter
    Face used for the current type of task filter in the agenda.
*** TODO org-agenda-structure-secondary
    Face used for secondary information in agenda block headers.
** TODO org-block [0/3]
   Outline-based notes management and organizer.
*** TODO org-block
    Face used for text inside various blocks.
*** TODO org-block-begin-line
    Face used for the line delimiting the begin of source blocks.
*** TODO org-block-end-line
    Face used for the line delimiting the end of source blocks.
** TODO org-document [0/3]
   Outline-based notes management and organizer.
*** TODO org-document-info
    Face for document information such as the author and date.
*** TODO org-document-info-keyword
    Face for document information keywords.
*** TODO org-document-title
    Face for document title, i.e. that which follows the #+TITLE: keyword.
** TODO org-priority [0/1]
   Outline-based notes management and organizer.
*** TODO org-priority
    Face used for priority cookies.
** TODO org-table [0/3]
   Options concerning tables in Org mode.
*** TODO org-table
    Face used for tables.
*** TODO org-table-header
    Face for table header.
*** TODO org-table-row
    Face used to fontify whole table rows (including newlines and indentation).
** TODO outline [0/8]
   Support for hierarchical outlining.
*** TODO outline-1
    Level 1.
*** TODO outline-2
    Level 2.
*** TODO outline-3
    Level 3.
*** TODO outline-4
    Level 4.
*** TODO outline-5
    Level 5.
*** TODO outline-6
    Level 6.
*** TODO outline-7
    Level 7.
*** TODO outline-8
    Level 8.
** TODO package [0/15]
   Manager for Emacs Lisp packages.
*** TODO package-description
    Face used on package description summaries in the package menu.
*** TODO package-help-section-name
    Face used on section names in package description buffers.
*** TODO package-name
    Face used on package names in the package menu.
*** TODO package-status-avail-obso
    Face used on the status and version of avail-obso packages.
*** TODO package-status-available
    Face used on the status and version of available packages.
*** TODO package-status-built-in
    Face used on the status and version of built-in packages.
*** TODO package-status-dependency
    Face used on the status and version of dependency packages.
*** TODO package-status-disabled
    Face used on the status and version of disabled packages.
*** TODO package-status-external
    Face used on the status and version of external packages.
*** TODO package-status-from-source
    Face used on the status and version of installed packages.
*** TODO package-status-held
    Face used on the status and version of held packages.
*** TODO package-status-incompat
    Face used on the status and version of incompat packages.
*** TODO package-status-installed
    Face used on the status and version of installed packages.
*** TODO package-status-new
    Face used on the status and version of new packages.
*** TODO package-status-unsigned
    Face used on the status and version of unsigned packages.
** TODO read [0/1]
*** TODO read-multiple-choice-face
    Face for the symbol name in 'read-multiple-choice' output.
** TODO rectangle [0/1]
   Operations on rectangles.
*** TODO rectangle-preview
    The face to use for the 'string-rectangle' preview.
** TODO sh [0/3]
   Shell programming utilities.
*** TODO sh-escaped-newline
    Face used for (non-escaped) backslash at end of a line in Shell-script mode.
*** TODO sh-heredoc
    Face to show a here-document.
*** TODO sh-quoted-exec
    Face to show quoted execs like `blabla`.
** TODO shell [0/3]
   Running shell from within Emacs buffers.
*** TODO shell-highlight-undef-alias-face
    Face used for shell command aliases.
*** TODO shell-highlight-undef-defined-face
    Face used for existing shell commands.
*** TODO shell-highlight-undef-undefined-face
    Face used for non-existent shell commands.
** TODO shr [0/15]
   Simple HTML Renderer.
*** TODO shr-abbreviation
    Face for <abbr> elements.
*** TODO shr-code
    Face used for rendering <code> blocks.
*** TODO shr-h1
    Face for <h1> elements.
*** TODO shr-h2
    Face for <h2> elements.
*** TODO shr-h3
    Face for <h3> elements.
*** TODO shr-h4
    Face for <h4> elements.
*** TODO shr-h5
    Face for <h5> elements.
*** TODO shr-h6
    Face for <h6> elements.
*** TODO shr-link
    Face for link elements.
*** TODO shr-mark
    Face used for <mark> elements.
*** TODO shr-selected-link
    Temporary face for externally visited link elements.
*** TODO shr-sliced-image
    Face used for sliced images.
*** TODO shr-strike-through
    Face for <s> elements.
*** TODO shr-sup
    Face for <sup> and <sub> elements.
*** TODO shr-text
    Face used for rendering text.
** TODO smerge [0/7]
   Minor mode to highlight and resolve diff3 conflicts.
*** TODO smerge-base
    Face for the base code.
*** TODO smerge-lower
    Face for the 'lower' version of a conflict.
*** TODO smerge-markers
    Face for the conflict markers.
*** TODO smerge-refined-added
    Face used for added characters shown by 'smerge-refine'.
*** TODO smerge-refined-changed
    Face used for char-based changes shown by 'smerge-refine'.
*** TODO smerge-refined-removed
    Face used for removed characters shown by 'smerge-refine'.
*** TODO smerge-upper
    Face for the 'upper' version of a conflict.
** TODO tab-bar [0/6]
   Frame-local tabs.
*** TODO tab-bar
    Tab bar face.
*** TODO tab-bar-tab
    Tab bar face for selected tab.
*** TODO tab-bar-tab-group-current
    Tab bar face for current group tab.
*** TODO tab-bar-tab-group-inactive
    Tab bar face for inactive group tab.
*** TODO tab-bar-tab-inactive
    Tab bar face for non-selected tab.
*** TODO tab-bar-tab-ungrouped
    Tab bar face for ungrouped tab when tab groups are used.
** TODO tab-line [0/1]
   Faces used in the tab line.
*** TODO tab-line
    Tab line face.
** TODO table [0/1]
   Text based table manipulation utilities.
*** TODO table-cell
    Face used for table cell contents.
** TODO tabulated-list [0/1]
   Tabulated-list customization group.
*** TODO tabulated-list-fake-header
    Face used on fake header lines.
** TODO term [0/23]
   General command interpreter in a window.
*** TODO term
    Default face to use in Term mode.
*** TODO term-bold
    Default face to use for bold text.
*** TODO term-color-black
    Face used to render black color code.
*** TODO term-color-blue
    Face used to render blue color code.
*** TODO term-color-bright-black
    Face used to render bright black color code.
*** TODO term-color-bright-blue
    Face used to render bright blue color code.
*** TODO term-color-bright-cyan
    Face used to render bright cyan color code.
*** TODO term-color-bright-green
    Face used to render bright green color code.
*** TODO term-color-bright-magenta
    Face used to render bright magenta color code.
*** TODO term-color-bright-red
    Face used to render bright red color code.
*** TODO term-color-bright-white
    Face used to render bright white color code.
*** TODO term-color-bright-yellow
    Face used to render bright yellow color code.
*** TODO term-color-cyan
    Face used to render cyan color code.
*** TODO term-color-green
    Face used to render green color code.
*** TODO term-color-magenta
    Face used to render magenta color code.
*** TODO term-color-red
    Face used to render red color code.
*** TODO term-color-white
    Face used to render white color code.
*** TODO term-color-yellow
    Face used to render yellow color code.
*** TODO term-faint
    Default face to use for faint text.
*** TODO term-fast-blink
    Default face to use for rapidly blinking text.
*** TODO term-italic
    Default face to use for italic text.
*** TODO term-slow-blink
    Default face to use for slowly blinking text.
*** TODO term-underline
    Default face to use for underlined text.
** TODO textsec-check.elc [0/1]
   Suspicious text identification.
*** TODO textsec-suspicious
    Face used to highlight suspicious strings.
** TODO treesit [0/2]
   Incremental parser.
*** TODO treesit-explorer-anonymous-node
    Face for anonymous nodes in tree-sitter explorer.
*** TODO treesit-explorer-field-name
    Face for field names in tree-sitter explorer.
** TODO vc [0/12]
   Emacs interface to version control systems.
*** TODO vc-conflict-state
    Face for VC modeline state when the file contains merge conflicts.
*** TODO vc-edited-state
    Face for VC modeline state when the file is edited.
*** TODO vc-git-log-edit-summary-max-warning
    Face for Git commit summary lines beyond the maximum length.
*** TODO vc-git-log-edit-summary-target-warning
    Face for Git commit summary lines beyond the target length.
*** TODO vc-ignored-state
    Face for VC modeline state when the file is registered, but ignored.
*** TODO vc-locally-added-state
    Face for VC modeline state when the file is locally added.
*** TODO vc-locked-state
    Face for VC modeline state when the file locked.
*** TODO vc-missing-state
    Face for VC modeline state when the file is missing from the file system.
*** TODO vc-needs-update-state
    Face for VC modeline state when the file needs update.
*** TODO vc-removed-state
    Face for VC modeline state when the file was removed from the VC system.
*** TODO vc-state-base
    Base face for VC state indicator.
*** TODO vc-up-to-date-state
    Face for VC modeline state when the file is up to date.
** TODO which-func [0/1]
   Display the current function name in the mode line.
*** TODO which-func
    Face used to highlight mode line function names.
** TODO which-key [0/9]
   Customization options for `which-key-mode'.
*** TODO which-key-command-description-face
    Face for the key description when it is a command.
*** TODO which-key-docstring-face
    Face for docstrings.
*** TODO which-key-group-description-face
    Face for the key description when it is a group or prefix.
*** TODO which-key-highlighted-command-face
    Default face for highlighted command descriptions.
*** TODO which-key-key-face
    Face for which-key keys.
*** TODO which-key-local-map-description-face
    Face for the key description when it is found in 'current-local-map'.
*** TODO which-key-note-face
    Face for notes or hints occasionally provided.
*** TODO which-key-separator-face
    Face for the separator (default separator is an arrow).
*** TODO which-key-special-key-face
    Face for special keys (SPC, TAB, RET).
** TODO widget [0/7]
   Faces used by the widget library.
*** TODO widget-button
    Face used for widget buttons.
*** TODO widget-button-pressed
    Face used for pressed buttons.
*** TODO widget-documentation
    Face used for documentation text.
*** TODO widget-field
    Face used for editable fields.
*** TODO widget-inactive
    Face used for inactive widgets.
*** TODO widget-single-line-field
    Face used for editable fields spanning only a single line.
*** TODO widget-unselected
    Face used for unselected widgets.
** TODO xref [0/3]
   Cross-referencing commands.
*** TODO xref-file-header
    Face used to highlight file header in the xref buffer.
*** TODO xref-line-number
    Face for displaying line numbers in the xref buffer.
*** TODO xref-match
    Face used to highlight matches in the xref buffer.

* TODO adob [0/1]
  auto-dim-other-buffers: dimmed inactive windows.
** TODO adob--hack
   A hack to make fringe refresh work. Do not use.

* DOING alert [6/8]
  Notification system for Emacs similar to Growl
** DONE alert-high-face
   High alert face.
** DONE alert-low-face
   Low alert face.
** DONE alert-moderate-face
   Moderate alert face.
** DONE alert-normal-face
   Normal alert face.
** TODO alert-saved-fringe-face
** TODO alert-saved-mode-line-face
** DONE alert-trivial-face
   Trivial alert face.
** DONE alert-urgent-face
   Urgent alert face.

* DONE all-the-icons [34/34]
  Manage how All The Icons formats icons.
** DONE all-the-icons-blue
   Face for blue icons
** DONE all-the-icons-blue-alt
   Face for blue icons
** DONE all-the-icons-cyan
   Face for cyan icons
** DONE all-the-icons-cyan-alt
   Face for cyan icons
** DONE all-the-icons-dblue
   Face for dblue icons
** DONE all-the-icons-dcyan
   Face for dcyan icons
** DONE all-the-icons-dgreen
   Face for dgreen icons
** DONE all-the-icons-dmaroon
   Face for dmaroon icons
** DONE all-the-icons-dorange
   Face for dorange icons
** DONE all-the-icons-dpink
   Face for dpink icons
** DONE all-the-icons-dpurple
   Face for dpurple icons
** DONE all-the-icons-dred
   Face for dred icons
** DONE all-the-icons-dsilver
   Face for dsilver icons
** DONE all-the-icons-dyellow
   Face for dyellow icons
** DONE all-the-icons-green
   Face for green icons
** DONE all-the-icons-lblue
   Face for lblue icons
** DONE all-the-icons-lcyan
   Face for lcyan icons
** DONE all-the-icons-lgreen
   Face for lgreen icons
** DONE all-the-icons-lmaroon
   Face for lmaroon icons
** DONE all-the-icons-lorange
   Face for lorange icons
** DONE all-the-icons-lpink
   Face for lpink icons
** DONE all-the-icons-lpurple
   Face for lpurple icons
** DONE all-the-icons-lred
   Face for lred icons
** DONE all-the-icons-lsilver
   Face for lsilver icons
** DONE all-the-icons-lyellow
   Face for lyellow icons
** DONE all-the-icons-maroon
   Face for maroon icons
** DONE all-the-icons-orange
   Face for orange icons
** DONE all-the-icons-pink
   Face for pink icons
** DONE all-the-icons-purple
   Face for purple icons
** DONE all-the-icons-purple-alt
   Face for purple icons
** DONE all-the-icons-red
   Face for red icons
** DONE all-the-icons-red-alt
   Face for dred icons
** DONE all-the-icons-silver
   Face for silver icons
** DONE all-the-icons-yellow
   Face for yellow icons

* TODO auto [0/2]
** TODO auto-dim-other-buffers
   Face with a (presumably) dimmed background for non-selected window.
** TODO auto-dim-other-buffers-hide
   Face with a (presumably) dimmed background and matching foreground.

* TODO calibredb [0/28]
  Calibredb group.
** TODO calibredb-archive-face
   Face used for archive.
** TODO calibredb-author-face
   Face used for author.
** TODO calibredb-comment-face
   Face used for comment.
** TODO calibredb-current-page-button-face
   Face used for current page button
** TODO calibredb-date-face
   Face for the date (last_modified).
** TODO calibredb-edit-annotation-header-title-face
   Face used for *calibredb-edit-annotation* header title face.
** TODO calibredb-favorite-face
   Face used for title.
** TODO calibredb-file-face
   Face for the file path.
** TODO calibredb-format-face
   Face used for format.
** TODO calibredb-highlight-face
   Face used for hightlight.
** TODO calibredb-id-face
   Face used for id.
** TODO calibredb-ids-face
   Face used for ids.
** TODO calibredb-language-face
   Face for the language.
** TODO calibredb-mark-face
   Face for the mark candidate.
** TODO calibredb-mouse-face
   Face used for *calibredb-search* mouse face.
** TODO calibredb-pubdate-face
   Face for the publish date.
** TODO calibredb-publisher-face
   Face for the publisher.
** TODO calibredb-search-header-filter-face
   Face used for filter field in *calibredb-search* header.
** TODO calibredb-search-header-highlight-face
   Face for the header at point.
** TODO calibredb-search-header-library-name-face
   Face used for library name in *calibredb-search* header.
** TODO calibredb-search-header-library-path-face
   Face used for library path in *calibredb-search* header.
** TODO calibredb-search-header-sort-face
   Face used for sort field in *calibredb-search* header.
** TODO calibredb-search-header-total-face
   Face used for total count in *calibredb-search* header.
** TODO calibredb-series-face
   Face for the series.
** TODO calibredb-size-face
   Face used for size.
** TODO calibredb-tag-face
   Face used for tag.
** TODO calibredb-title-detailed-view-face
   Face used for title on detailed view.
** TODO calibredb-title-face
   Face used for title on compact view.

* TODO circe [0/6]
  Client for IRC in Emacs.
** TODO lui-button-face
   Default face used for LUI buttons.
** TODO lui-deleted-face
   Face for deleted messages
** TODO lui-emphasis-face
   Face for emphasis markup.
** TODO lui-highlight-face
   Lui mode face used for highlighting.
** TODO lui-strong-face
   Face used for strong markup.
** TODO lui-time-stamp-face
   Lui mode face used for time stamps.

* DONE company [19/19]
  Extensible inline text completion mechanism.
** DONE company-echo
   Face used for completions in the echo area.
** DONE company-echo-common
   Face used for the common part of completions in the echo area.
** DONE company-preview
   Face used for the completion preview.
** DONE company-preview-common
   Face used for the common part of the completion preview.
** DONE company-preview-search
   Face used for the search string in the completion preview.
** DONE company-tooltip
   Face used for the tooltip.
** DONE company-tooltip-annotation
   Face used for the completion annotation in the tooltip.
** DONE company-tooltip-annotation-selection
   Face used for the selected completion annotation in the tooltip.
** DONE company-tooltip-common
   Face used for the common completion in the tooltip.
** DONE company-tooltip-common-selection
   Face used for the selected common completion in the tooltip.
** DONE company-tooltip-deprecated
   Face used for the deprecated items.
** DONE company-tooltip-mouse
   Face used for the tooltip item under the mouse.
** DONE company-tooltip-quick-access
   Face used for the quick-access hints shown in the tooltip.
** DONE company-tooltip-quick-access-selection
   Face used for the selected quick-access hints shown in the tooltip.
** DONE company-tooltip-scrollbar-thumb
   Face used for the tooltip scrollbar thumb (bar).
** DONE company-tooltip-scrollbar-track
   Face used for the tooltip scrollbar track (trough).
** DONE company-tooltip-search
   Face used for the search string in the tooltip.
** DONE company-tooltip-search-selection
   Face used for the search string inside the selection in the tooltip.
** DONE company-tooltip-selection
   Face used for the selection in the tooltip.

* DONE company-box [6/6]
  Front-end for Company.
** DONE company-box-annotation
   company-box-annotation is an alias for the face `company-tooltip-annotation'.
** DONE company-box-background
   company-box-background is an alias for the face `company-tooltip'.
** DONE company-box-candidate
   company-box-candidate is an alias for the face `company-tooltip'.
** DONE company-box-numbers
   company-box-numbers is an alias for the face `company-tooltip'.
** DONE company-box-scrollbar
   Face used for the scrollbar.
** DONE company-box-selection
   company-box-selection is an alias for the face `company-tooltip-selection'.

* DOING consult [20/21]
  Search and navigate via `completing-read'.
** DONE consult-async-failed
   Face used if asynchronous process has failed.
** DONE consult-async-finished
   Face used if asynchronous process has finished.
** TODO consult-async-option
   Face used to highlight asynchronous command options.
** DONE consult-async-running
   Face used if asynchronous process is running.
** DONE consult-async-split
   Face used to highlight punctuation character.
** DONE consult-bookmark
   Face used to highlight bookmarks in 'consult-buffer'.
** DONE consult-buffer
   Face used to highlight buffers in 'consult-buffer'.
** DONE consult-file
   Face used to highlight files in 'consult-buffer'.
** DONE consult-grep-context
   Face used to highlight grep context in 'consult-grep'.
** DONE consult-help
   Face used to highlight help, e.g., in 'consult-register-store'.
** DONE consult-highlight-mark
   Face used for mark positions in completion candidates.
** DONE consult-highlight-match
   Face used to highlight matches in the completion candidates.
** DONE consult-key
   Face used to highlight keys, e.g., in 'consult-register'.
** DONE consult-line-number
   Face used to highlight location line in 'consult-global-mark'.
** DONE consult-line-number-prefix
   Face used to highlight line number prefixes.
** DONE consult-line-number-wrapped
   Face used to highlight line number prefixes after wrap around.
** DONE consult-narrow-indicator
   Face used for the narrowing indicator.
** DONE consult-preview-insertion
   Face used for previews of text to be inserted.
** DONE consult-preview-line
   Face used for line previews.
** DONE consult-preview-match
   Face used for match previews, e.g., in 'consult-line'.
** DONE consult-separator

* DONE dashboard [8/8]
  Extensible startup screen.
** DONE dashboard-banner-logo-title
   Face used for the banner title.
** DONE dashboard-footer-face
   Face used for footer text.
** DONE dashboard-footer-icon-face
   Face used for icon in footer.
** DONE dashboard-heading
   Face used for widget headings.
** DONE dashboard-items-face
   Face used for items.
** DONE dashboard-navigator
   Face used for the navigator.
** DONE dashboard-no-items-face
   Face used for no items.
** DONE dashboard-text-banner
   Face used for text banners.

* DONE dirvish [38/38]
  A better Dired.
** DONE dirvish-collapse-dir-face
   Face used for directories in 'collapse' attribute.
** DONE dirvish-collapse-empty-dir-face
   Face used for empty directories in 'collapse' attribute.
** DONE dirvish-collapse-file-face
   Face used for files in 'collapse' attribute.
** DONE dirvish-emerge-group-title
   Face used for emerge group title.
** DONE dirvish-file-device-number
   Face used for filesystem device number mode-line segment.
** DONE dirvish-file-group-id
   Face used for file group id mode-line segment.
** DONE dirvish-file-inode-number
   Face used for file inode number mode-line segment.
** DONE dirvish-file-link-number
   Face used for file link number mode-line segment.
** DONE dirvish-file-modes
   Face used for 'file-modes' attribute and mode line segment.
** DONE dirvish-file-size
   Face used for 'file-size' attribute and mode-line segment.
** DONE dirvish-file-time
   Face used for 'file-time' attribute and mode line segment.
** DONE dirvish-file-user-id
   Face used for file size attributes / mode-line segment.
** DONE dirvish-free-space
   Face used for 'free-space' mode-line segment.
** DONE dirvish-git-commit-message-face
   Face for commit message overlays.
** DONE dirvish-hl-line
   Face used for Dirvish line highlighting in focused Dirvish window.
** DONE dirvish-hl-line-inactive
   Face used for Dirvish line highlighting in unfocused Dirvish windows.
** DONE dirvish-inactive
   Face used for mode-line segments in unfocused Dirvish windows.
** DONE dirvish-media-info-heading
   Face used for heading of media property groups.
** DONE dirvish-media-info-property-key
   Face used for emerge group title.
** DONE dirvish-narrow-match-face-0
   Face for matches of components numbered 0 mod 4.
** DONE dirvish-narrow-match-face-1
   Face for matches of components numbered 1 mod 4.
** DONE dirvish-narrow-match-face-2
   Face for matches of components numbered 2 mod 4.
** DONE dirvish-narrow-match-face-3
   Face for matches of components numbered 3 mod 4.
** DONE dirvish-narrow-split
   Face used to highlight punctuation character.
** DONE dirvish-proc-failed
   Face used if asynchronous process has failed.
** DONE dirvish-proc-finished
   Face used if asynchronous process has finished.
** DONE dirvish-proc-running
   Face used if asynchronous process is running.
** DONE dirvish-subtree-guide
   Face used for 'expanded-state' attribute.
** DONE dirvish-subtree-state
   Face used for 'expanded-state' attribute.
** DONE dirvish-vc-added-state
   Face used for 'added' vc state in the Dirvish buffer.
** DONE dirvish-vc-conflict-state
   Face used for 'conflict' vc state in the Dirvish buffer.
** DONE dirvish-vc-edited-state
   Face used for 'edited' vc state in the Dirvish buffer.
** DONE dirvish-vc-locked-state
   Face used for 'locked' vc state in the Dirvish buffer.
** DONE dirvish-vc-missing-state
   Face used for 'missing' vc state in the Dirvish buffer.
** DONE dirvish-vc-needs-merge-face
   Face used for 'needs-merge' vc state in the Dirvish buffer.
** DONE dirvish-vc-needs-update-state
   Face used for 'needs-update' vc state in the Dirvish buffer.
** DONE dirvish-vc-removed-state
   Face used for 'removed' vc state in the Dirvish buffer.
** DONE dirvish-vc-unregistered-face
   Face used for 'unregistered' vc state in the Dirvish buffer.

* TODO eat [0/274]
  Emulate A Terminal.
** TODO eat-shell-prompt-annotation-failure
   Face used in annotation to indicate the command has failed.
** TODO eat-shell-prompt-annotation-running
   Face used in annotation to indicate the command is running.
** TODO eat-shell-prompt-annotation-success
   Face used in annotation to indicate the command has succeeded.
** TODO eat-term-bold
   Face used to render bold text.
** TODO eat-term-color-0
   Face used to render black color text.
** TODO eat-term-color-1
   Face used to render red color text.
** TODO eat-term-color-10
   Face used to render bright green color text.
** TODO eat-term-color-100
   Face used to render text with 100th color of 256 color palette.
** TODO eat-term-color-101
   Face used to render text with 101st color of 256 color palette.
** TODO eat-term-color-102
   Face used to render text with 102nd color of 256 color palette.
** TODO eat-term-color-103
   Face used to render text with 103rd color of 256 color palette.
** TODO eat-term-color-104
   Face used to render text with 104th color of 256 color palette.
** TODO eat-term-color-105
   Face used to render text with 105th color of 256 color palette.
** TODO eat-term-color-106
   Face used to render text with 106th color of 256 color palette.
** TODO eat-term-color-107
   Face used to render text with 107th color of 256 color palette.
** TODO eat-term-color-108
   Face used to render text with 108th color of 256 color palette.
** TODO eat-term-color-109
   Face used to render text with 109th color of 256 color palette.
** TODO eat-term-color-11
   Face used to render bright yellow color text.
** TODO eat-term-color-110
   Face used to render text with 110th color of 256 color palette.
** TODO eat-term-color-111
   Face used to render text with 111th color of 256 color palette.
** TODO eat-term-color-112
   Face used to render text with 112th color of 256 color palette.
** TODO eat-term-color-113
   Face used to render text with 113th color of 256 color palette.
** TODO eat-term-color-114
   Face used to render text with 114th color of 256 color palette.
** TODO eat-term-color-115
   Face used to render text with 115th color of 256 color palette.
** TODO eat-term-color-116
   Face used to render text with 116th color of 256 color palette.
** TODO eat-term-color-117
   Face used to render text with 117th color of 256 color palette.
** TODO eat-term-color-118
   Face used to render text with 118th color of 256 color palette.
** TODO eat-term-color-119
   Face used to render text with 119th color of 256 color palette.
** TODO eat-term-color-12
   Face used to render bright blue color text.
** TODO eat-term-color-120
   Face used to render text with 120th color of 256 color palette.
** TODO eat-term-color-121
   Face used to render text with 121st color of 256 color palette.
** TODO eat-term-color-122
   Face used to render text with 122nd color of 256 color palette.
** TODO eat-term-color-123
   Face used to render text with 123rd color of 256 color palette.
** TODO eat-term-color-124
   Face used to render text with 124th color of 256 color palette.
** TODO eat-term-color-125
   Face used to render text with 125th color of 256 color palette.
** TODO eat-term-color-126
   Face used to render text with 126th color of 256 color palette.
** TODO eat-term-color-127
   Face used to render text with 127th color of 256 color palette.
** TODO eat-term-color-128
   Face used to render text with 128th color of 256 color palette.
** TODO eat-term-color-129
   Face used to render text with 129th color of 256 color palette.
** TODO eat-term-color-13
   Face used to render bright magenta color text.
** TODO eat-term-color-130
   Face used to render text with 130th color of 256 color palette.
** TODO eat-term-color-131
   Face used to render text with 131st color of 256 color palette.
** TODO eat-term-color-132
   Face used to render text with 132nd color of 256 color palette.
** TODO eat-term-color-133
   Face used to render text with 133rd color of 256 color palette.
** TODO eat-term-color-134
   Face used to render text with 134th color of 256 color palette.
** TODO eat-term-color-135
   Face used to render text with 135th color of 256 color palette.
** TODO eat-term-color-136
   Face used to render text with 136th color of 256 color palette.
** TODO eat-term-color-137
   Face used to render text with 137th color of 256 color palette.
** TODO eat-term-color-138
   Face used to render text with 138th color of 256 color palette.
** TODO eat-term-color-139
   Face used to render text with 139th color of 256 color palette.
** TODO eat-term-color-14
   Face used to render bright cyan color text.
** TODO eat-term-color-140
   Face used to render text with 140th color of 256 color palette.
** TODO eat-term-color-141
   Face used to render text with 141st color of 256 color palette.
** TODO eat-term-color-142
   Face used to render text with 142nd color of 256 color palette.
** TODO eat-term-color-143
   Face used to render text with 143rd color of 256 color palette.
** TODO eat-term-color-144
   Face used to render text with 144th color of 256 color palette.
** TODO eat-term-color-145
   Face used to render text with 145th color of 256 color palette.
** TODO eat-term-color-146
   Face used to render text with 146th color of 256 color palette.
** TODO eat-term-color-147
   Face used to render text with 147th color of 256 color palette.
** TODO eat-term-color-148
   Face used to render text with 148th color of 256 color palette.
** TODO eat-term-color-149
   Face used to render text with 149th color of 256 color palette.
** TODO eat-term-color-15
   Face used to render bright white color text.
** TODO eat-term-color-150
   Face used to render text with 150th color of 256 color palette.
** TODO eat-term-color-151
   Face used to render text with 151st color of 256 color palette.
** TODO eat-term-color-152
   Face used to render text with 152nd color of 256 color palette.
** TODO eat-term-color-153
   Face used to render text with 153rd color of 256 color palette.
** TODO eat-term-color-154
   Face used to render text with 154th color of 256 color palette.
** TODO eat-term-color-155
   Face used to render text with 155th color of 256 color palette.
** TODO eat-term-color-156
   Face used to render text with 156th color of 256 color palette.
** TODO eat-term-color-157
   Face used to render text with 157th color of 256 color palette.
** TODO eat-term-color-158
   Face used to render text with 158th color of 256 color palette.
** TODO eat-term-color-159
   Face used to render text with 159th color of 256 color palette.
** TODO eat-term-color-16
   Face used to render text with 16th color of 256 color palette.
** TODO eat-term-color-160
   Face used to render text with 160th color of 256 color palette.
** TODO eat-term-color-161
   Face used to render text with 161st color of 256 color palette.
** TODO eat-term-color-162
   Face used to render text with 162nd color of 256 color palette.
** TODO eat-term-color-163
   Face used to render text with 163rd color of 256 color palette.
** TODO eat-term-color-164
   Face used to render text with 164th color of 256 color palette.
** TODO eat-term-color-165
   Face used to render text with 165th color of 256 color palette.
** TODO eat-term-color-166
   Face used to render text with 166th color of 256 color palette.
** TODO eat-term-color-167
   Face used to render text with 167th color of 256 color palette.
** TODO eat-term-color-168
   Face used to render text with 168th color of 256 color palette.
** TODO eat-term-color-169
   Face used to render text with 169th color of 256 color palette.
** TODO eat-term-color-17
   Face used to render text with 17th color of 256 color palette.
** TODO eat-term-color-170
   Face used to render text with 170th color of 256 color palette.
** TODO eat-term-color-171
   Face used to render text with 171st color of 256 color palette.
** TODO eat-term-color-172
   Face used to render text with 172nd color of 256 color palette.
** TODO eat-term-color-173
   Face used to render text with 173rd color of 256 color palette.
** TODO eat-term-color-174
   Face used to render text with 174th color of 256 color palette.
** TODO eat-term-color-175
   Face used to render text with 175th color of 256 color palette.
** TODO eat-term-color-176
   Face used to render text with 176th color of 256 color palette.
** TODO eat-term-color-177
   Face used to render text with 177th color of 256 color palette.
** TODO eat-term-color-178
   Face used to render text with 178th color of 256 color palette.
** TODO eat-term-color-179
   Face used to render text with 179th color of 256 color palette.
** TODO eat-term-color-18
   Face used to render text with 18th color of 256 color palette.
** TODO eat-term-color-180
   Face used to render text with 180th color of 256 color palette.
** TODO eat-term-color-181
   Face used to render text with 181st color of 256 color palette.
** TODO eat-term-color-182
   Face used to render text with 182nd color of 256 color palette.
** TODO eat-term-color-183
   Face used to render text with 183rd color of 256 color palette.
** TODO eat-term-color-184
   Face used to render text with 184th color of 256 color palette.
** TODO eat-term-color-185
   Face used to render text with 185th color of 256 color palette.
** TODO eat-term-color-186
   Face used to render text with 186th color of 256 color palette.
** TODO eat-term-color-187
   Face used to render text with 187th color of 256 color palette.
** TODO eat-term-color-188
   Face used to render text with 188th color of 256 color palette.
** TODO eat-term-color-189
   Face used to render text with 189th color of 256 color palette.
** TODO eat-term-color-19
   Face used to render text with 19th color of 256 color palette.
** TODO eat-term-color-190
   Face used to render text with 190th color of 256 color palette.
** TODO eat-term-color-191
   Face used to render text with 191st color of 256 color palette.
** TODO eat-term-color-192
   Face used to render text with 192nd color of 256 color palette.
** TODO eat-term-color-193
   Face used to render text with 193rd color of 256 color palette.
** TODO eat-term-color-194
   Face used to render text with 194th color of 256 color palette.
** TODO eat-term-color-195
   Face used to render text with 195th color of 256 color palette.
** TODO eat-term-color-196
   Face used to render text with 196th color of 256 color palette.
** TODO eat-term-color-197
   Face used to render text with 197th color of 256 color palette.
** TODO eat-term-color-198
   Face used to render text with 198th color of 256 color palette.
** TODO eat-term-color-199
   Face used to render text with 199th color of 256 color palette.
** TODO eat-term-color-2
   Face used to render green color text.
** TODO eat-term-color-20
   Face used to render text with 20th color of 256 color palette.
** TODO eat-term-color-200
   Face used to render text with 200th color of 256 color palette.
** TODO eat-term-color-201
   Face used to render text with 201st color of 256 color palette.
** TODO eat-term-color-202
   Face used to render text with 202nd color of 256 color palette.
** TODO eat-term-color-203
   Face used to render text with 203rd color of 256 color palette.
** TODO eat-term-color-204
   Face used to render text with 204th color of 256 color palette.
** TODO eat-term-color-205
   Face used to render text with 205th color of 256 color palette.
** TODO eat-term-color-206
   Face used to render text with 206th color of 256 color palette.
** TODO eat-term-color-207
   Face used to render text with 207th color of 256 color palette.
** TODO eat-term-color-208
   Face used to render text with 208th color of 256 color palette.
** TODO eat-term-color-209
   Face used to render text with 209th color of 256 color palette.
** TODO eat-term-color-21
   Face used to render text with 21st color of 256 color palette.
** TODO eat-term-color-210
   Face used to render text with 210th color of 256 color palette.
** TODO eat-term-color-211
   Face used to render text with 211th color of 256 color palette.
** TODO eat-term-color-212
   Face used to render text with 212th color of 256 color palette.
** TODO eat-term-color-213
   Face used to render text with 213th color of 256 color palette.
** TODO eat-term-color-214
   Face used to render text with 214th color of 256 color palette.
** TODO eat-term-color-215
   Face used to render text with 215th color of 256 color palette.
** TODO eat-term-color-216
   Face used to render text with 216th color of 256 color palette.
** TODO eat-term-color-217
   Face used to render text with 217th color of 256 color palette.
** TODO eat-term-color-218
   Face used to render text with 218th color of 256 color palette.
** TODO eat-term-color-219
   Face used to render text with 219th color of 256 color palette.
** TODO eat-term-color-22
   Face used to render text with 22nd color of 256 color palette.
** TODO eat-term-color-220
   Face used to render text with 220th color of 256 color palette.
** TODO eat-term-color-221
   Face used to render text with 221st color of 256 color palette.
** TODO eat-term-color-222
   Face used to render text with 222nd color of 256 color palette.
** TODO eat-term-color-223
   Face used to render text with 223rd color of 256 color palette.
** TODO eat-term-color-224
   Face used to render text with 224th color of 256 color palette.
** TODO eat-term-color-225
   Face used to render text with 225th color of 256 color palette.
** TODO eat-term-color-226
   Face used to render text with 226th color of 256 color palette.
** TODO eat-term-color-227
   Face used to render text with 227th color of 256 color palette.
** TODO eat-term-color-228
   Face used to render text with 228th color of 256 color palette.
** TODO eat-term-color-229
   Face used to render text with 229th color of 256 color palette.
** TODO eat-term-color-23
   Face used to render text with 23rd color of 256 color palette.
** TODO eat-term-color-230
   Face used to render text with 230th color of 256 color palette.
** TODO eat-term-color-231
   Face used to render text with 231st color of 256 color palette.
** TODO eat-term-color-232
   Face used to render text with 232nd color of 256 color palette.
** TODO eat-term-color-233
   Face used to render text with 233rd color of 256 color palette.
** TODO eat-term-color-234
   Face used to render text with 234th color of 256 color palette.
** TODO eat-term-color-235
   Face used to render text with 235th color of 256 color palette.
** TODO eat-term-color-236
   Face used to render text with 236th color of 256 color palette.
** TODO eat-term-color-237
   Face used to render text with 237th color of 256 color palette.
** TODO eat-term-color-238
   Face used to render text with 238th color of 256 color palette.
** TODO eat-term-color-239
   Face used to render text with 239th color of 256 color palette.
** TODO eat-term-color-24
   Face used to render text with 24th color of 256 color palette.
** TODO eat-term-color-240
   Face used to render text with 240th color of 256 color palette.
** TODO eat-term-color-241
   Face used to render text with 241st color of 256 color palette.
** TODO eat-term-color-242
   Face used to render text with 242nd color of 256 color palette.
** TODO eat-term-color-243
   Face used to render text with 243rd color of 256 color palette.
** TODO eat-term-color-244
   Face used to render text with 244th color of 256 color palette.
** TODO eat-term-color-245
   Face used to render text with 245th color of 256 color palette.
** TODO eat-term-color-246
   Face used to render text with 246th color of 256 color palette.
** TODO eat-term-color-247
   Face used to render text with 247th color of 256 color palette.
** TODO eat-term-color-248
   Face used to render text with 248th color of 256 color palette.
** TODO eat-term-color-249
   Face used to render text with 249th color of 256 color palette.
** TODO eat-term-color-25
   Face used to render text with 25th color of 256 color palette.
** TODO eat-term-color-250
   Face used to render text with 250th color of 256 color palette.
** TODO eat-term-color-251
   Face used to render text with 251st color of 256 color palette.
** TODO eat-term-color-252
   Face used to render text with 252nd color of 256 color palette.
** TODO eat-term-color-253
   Face used to render text with 253rd color of 256 color palette.
** TODO eat-term-color-254
   Face used to render text with 254th color of 256 color palette.
** TODO eat-term-color-255
   Face used to render text with 255th color of 256 color palette.
** TODO eat-term-color-26
   Face used to render text with 26th color of 256 color palette.
** TODO eat-term-color-27
   Face used to render text with 27th color of 256 color palette.
** TODO eat-term-color-28
   Face used to render text with 28th color of 256 color palette.
** TODO eat-term-color-29
   Face used to render text with 29th color of 256 color palette.
** TODO eat-term-color-3
   Face used to render yellow color text.
** TODO eat-term-color-30
   Face used to render text with 30th color of 256 color palette.
** TODO eat-term-color-31
   Face used to render text with 31st color of 256 color palette.
** TODO eat-term-color-32
   Face used to render text with 32nd color of 256 color palette.
** TODO eat-term-color-33
   Face used to render text with 33rd color of 256 color palette.
** TODO eat-term-color-34
   Face used to render text with 34th color of 256 color palette.
** TODO eat-term-color-35
   Face used to render text with 35th color of 256 color palette.
** TODO eat-term-color-36
   Face used to render text with 36th color of 256 color palette.
** TODO eat-term-color-37
   Face used to render text with 37th color of 256 color palette.
** TODO eat-term-color-38
   Face used to render text with 38th color of 256 color palette.
** TODO eat-term-color-39
   Face used to render text with 39th color of 256 color palette.
** TODO eat-term-color-4
   Face used to render blue color text.
** TODO eat-term-color-40
   Face used to render text with 40th color of 256 color palette.
** TODO eat-term-color-41
   Face used to render text with 41st color of 256 color palette.
** TODO eat-term-color-42
   Face used to render text with 42nd color of 256 color palette.
** TODO eat-term-color-43
   Face used to render text with 43rd color of 256 color palette.
** TODO eat-term-color-44
   Face used to render text with 44th color of 256 color palette.
** TODO eat-term-color-45
   Face used to render text with 45th color of 256 color palette.
** TODO eat-term-color-46
   Face used to render text with 46th color of 256 color palette.
** TODO eat-term-color-47
   Face used to render text with 47th color of 256 color palette.
** TODO eat-term-color-48
   Face used to render text with 48th color of 256 color palette.
** TODO eat-term-color-49
   Face used to render text with 49th color of 256 color palette.
** TODO eat-term-color-5
   Face used to render magenta color text.
** TODO eat-term-color-50
   Face used to render text with 50th color of 256 color palette.
** TODO eat-term-color-51
   Face used to render text with 51st color of 256 color palette.
** TODO eat-term-color-52
   Face used to render text with 52nd color of 256 color palette.
** TODO eat-term-color-53
   Face used to render text with 53rd color of 256 color palette.
** TODO eat-term-color-54
   Face used to render text with 54th color of 256 color palette.
** TODO eat-term-color-55
   Face used to render text with 55th color of 256 color palette.
** TODO eat-term-color-56
   Face used to render text with 56th color of 256 color palette.
** TODO eat-term-color-57
   Face used to render text with 57th color of 256 color palette.
** TODO eat-term-color-58
   Face used to render text with 58th color of 256 color palette.
** TODO eat-term-color-59
   Face used to render text with 59th color of 256 color palette.
** TODO eat-term-color-6
   Face used to render cyan color text.
** TODO eat-term-color-60
   Face used to render text with 60th color of 256 color palette.
** TODO eat-term-color-61
   Face used to render text with 61st color of 256 color palette.
** TODO eat-term-color-62
   Face used to render text with 62nd color of 256 color palette.
** TODO eat-term-color-63
   Face used to render text with 63rd color of 256 color palette.
** TODO eat-term-color-64
   Face used to render text with 64th color of 256 color palette.
** TODO eat-term-color-65
   Face used to render text with 65th color of 256 color palette.
** TODO eat-term-color-66
   Face used to render text with 66th color of 256 color palette.
** TODO eat-term-color-67
   Face used to render text with 67th color of 256 color palette.
** TODO eat-term-color-68
   Face used to render text with 68th color of 256 color palette.
** TODO eat-term-color-69
   Face used to render text with 69th color of 256 color palette.
** TODO eat-term-color-7
   Face used to render white color text.
** TODO eat-term-color-70
   Face used to render text with 70th color of 256 color palette.
** TODO eat-term-color-71
   Face used to render text with 71st color of 256 color palette.
** TODO eat-term-color-72
   Face used to render text with 72nd color of 256 color palette.
** TODO eat-term-color-73
   Face used to render text with 73rd color of 256 color palette.
** TODO eat-term-color-74
   Face used to render text with 74th color of 256 color palette.
** TODO eat-term-color-75
   Face used to render text with 75th color of 256 color palette.
** TODO eat-term-color-76
   Face used to render text with 76th color of 256 color palette.
** TODO eat-term-color-77
   Face used to render text with 77th color of 256 color palette.
** TODO eat-term-color-78
   Face used to render text with 78th color of 256 color palette.
** TODO eat-term-color-79
   Face used to render text with 79th color of 256 color palette.
** TODO eat-term-color-8
   Face used to render bright black color text.
** TODO eat-term-color-80
   Face used to render text with 80th color of 256 color palette.
** TODO eat-term-color-81
   Face used to render text with 81st color of 256 color palette.
** TODO eat-term-color-82
   Face used to render text with 82nd color of 256 color palette.
** TODO eat-term-color-83
   Face used to render text with 83rd color of 256 color palette.
** TODO eat-term-color-84
   Face used to render text with 84th color of 256 color palette.
** TODO eat-term-color-85
   Face used to render text with 85th color of 256 color palette.
** TODO eat-term-color-86
   Face used to render text with 86th color of 256 color palette.
** TODO eat-term-color-87
   Face used to render text with 87th color of 256 color palette.
** TODO eat-term-color-88
   Face used to render text with 88th color of 256 color palette.
** TODO eat-term-color-89
   Face used to render text with 89th color of 256 color palette.
** TODO eat-term-color-9
   Face used to render bright red color text.
** TODO eat-term-color-90
   Face used to render text with 90th color of 256 color palette.
** TODO eat-term-color-91
   Face used to render text with 91st color of 256 color palette.
** TODO eat-term-color-92
   Face used to render text with 92nd color of 256 color palette.
** TODO eat-term-color-93
   Face used to render text with 93rd color of 256 color palette.
** TODO eat-term-color-94
   Face used to render text with 94th color of 256 color palette.
** TODO eat-term-color-95
   Face used to render text with 95th color of 256 color palette.
** TODO eat-term-color-96
   Face used to render text with 96th color of 256 color palette.
** TODO eat-term-color-97
   Face used to render text with 97th color of 256 color palette.
** TODO eat-term-color-98
   Face used to render text with 98th color of 256 color palette.
** TODO eat-term-color-99
   Face used to render text with 99th color of 256 color palette.
** TODO eat-term-faint
   Face used to render faint text.
** TODO eat-term-fast-blink
   Face used to render rapidly blinking text.
** TODO eat-term-font-0
   Default font.
** TODO eat-term-font-1
   Alternative font 1.
** TODO eat-term-font-2
   Alternative font 2.
** TODO eat-term-font-3
   Alternative font 3.
** TODO eat-term-font-4
   Alternative font 4.
** TODO eat-term-font-5
   Alternative font 5.
** TODO eat-term-font-6
   Alternative font 6.
** TODO eat-term-font-7
   Alternative font 7.
** TODO eat-term-font-8
   Alternative font 8.
** TODO eat-term-font-9
   Alternative font 9.
** TODO eat-term-italic
   Face used to render italic text.
** TODO eat-term-slow-blink
   Face used to render slowly blinking text.

* TODO edit-indirect [0/1]
  Editing regions in separate buffers.
** TODO edit-indirect-edited-region
   Face used to highlight an indirectly edited region.

* DONE elfeed [13/13]
  An Emacs web feed reader.
** DONE elfeed-log-date-face
   Face for showing the date in the elfeed log buffer.
** DONE elfeed-log-debug-level-face
   Face for showing the 'debug' log level in the elfeed log buffer.
** DONE elfeed-log-error-level-face
   Face for showing the 'error' log level in the elfeed log buffer.
** DONE elfeed-log-info-level-face
   Face for showing the 'info' log level in the elfeed log buffer.
** DONE elfeed-log-warn-level-face
   Face for showing the 'warn' log level in the elfeed log buffer.
** DONE elfeed-search-date-face
   Face used in search mode for dates.
** DONE elfeed-search-feed-face
   Face used in search mode for feed titles.
** DONE elfeed-search-filter-face
   Face for showing the current Elfeed search filter.
** DONE elfeed-search-last-update-face
   Face for showing the date and time the database was last updated.
** DONE elfeed-search-tag-face
   Face used in search mode for tags.
** DONE elfeed-search-title-face
   Face used in search mode for titles.
** DONE elfeed-search-unread-count-face
   Face used in search mode for unread entry titles.
** DONE elfeed-search-unread-title-face
   Face used in search mode for unread entry titles.

* DONE embark [12/12]
  Emacs Mini-Buffer Actions Rooted in Keymaps.
** DONE embark-collect-annotation
   Face for annotations in Embark Collect.
** DONE embark-collect-candidate
   Face for candidates in Embark Collect buffers.
** DONE embark-collect-group-separator
   Face for group titles in Embark Collect buffers.
** DONE embark-collect-group-title
   Face for group titles in Embark Collect buffers.
** DONE embark-keybinding
   Face used to display key bindings.
** DONE embark-keybinding-repeat
   Face used to indicate keybindings as repeatable.
** DONE embark-keymap
   Face used to display keymaps.
** DONE embark-selected
   Face for selected candidates.
** DONE embark-target
   Face used to highlight the target at point during 'embark-act'.
** DONE embark-verbose-indicator-documentation
   Face used by the verbose action indicator to display binding descriptions.
** DONE embark-verbose-indicator-shadowed
   Face used by the verbose action indicator for the shadowed targets.
** DONE embark-verbose-indicator-title
   Face used by the verbose action indicator for the title.

* DONE emms [11/11]
  *The Emacs Multimedia System.
** DONE emms-browser-album-face
   Face for album in a browser/playlist buffer.
** DONE emms-browser-albumartist-face
   Face for albumartist in a browser/playlist buffer.
** DONE emms-browser-artist-face
   Face for artist in a browser/playlist buffer.
** DONE emms-browser-composer-face
   Face for composer in a browser/playlist buffer.
** DONE emms-browser-performer-face
   Face for performer in a browser/playlist buffer.
** DONE emms-browser-track-face
   Face for track in a browser/playlist buffer.
** DONE emms-browser-year/genre-face
   Face for year/genre in a browser/playlist buffer.
** DONE emms-metaplaylist-mode-current-face
   Face for the current buffer name in the playlists buffer.
** DONE emms-metaplaylist-mode-face
   Face for the buffer names in the playlists buffer.
** DONE emms-playlist-selected-face
   Face for highlighting the selected track.
** DONE emms-playlist-track-face
   Face for the tracks in a playlist buffer.

* TODO eshell [0/26]
  Command shell implemented entirely in Emacs Lisp.
** TODO eshell-ls-archive
   The face used for highlighting archived and compressed file names.
** TODO eshell-ls-backup
   The face used for highlighting backup file names.
** TODO eshell-ls-clutter
   The face used for highlighting junk file names.
** TODO eshell-ls-directory
   The face used for highlighting directories.
** TODO eshell-ls-executable
   The face used for highlighting executables (not directories, though).
** TODO eshell-ls-missing
   The face used for highlighting non-existent file names.
** TODO eshell-ls-product
   The face used for highlighting files that are build products.
** TODO eshell-ls-readonly
   The face used for highlighting read-only files.
** TODO eshell-ls-special
   The face used for highlighting non-regular files.
** TODO eshell-ls-symlink
   The face used for highlighting symbolic links.
** TODO eshell-ls-unreadable
   The face used for highlighting unreadable files.
** TODO eshell-prompt
   The face used to highlight prompt strings.
** TODO eshell-syntax-highlighting-alias-face
   Face used for Eshell aliases.
** TODO eshell-syntax-highlighting-builtin-command-face
   Face used for a builtin Eshell command.
** TODO eshell-syntax-highlighting-command-substitution-face
   Face for $ command substitution delimiters.
** TODO eshell-syntax-highlighting-comment-face
   Face used for comments in an Eshell command.
** TODO eshell-syntax-highlighting-default-face
   Default face for Eshell commands.
** TODO eshell-syntax-highlighting-delimiter-face
   Face used for delimiters in an Eshell command.
** TODO eshell-syntax-highlighting-directory-face
   Face used for directories in command position if 'eshell-cd-on-directory' is t.
** TODO eshell-syntax-highlighting-envvar-face
   Face used for environment variables in an Eshell command.
** TODO eshell-syntax-highlighting-file-arg-face
   Face used for command arguments which are existing files.
** TODO eshell-syntax-highlighting-invalid-face
   Face used for invalid Eshell commands.
** TODO eshell-syntax-highlighting-lisp-function-face
   Face used for Emacs Lisp functions.
** TODO eshell-syntax-highlighting-option-face
   Face used for options in an Eshell command.
** TODO eshell-syntax-highlighting-shell-command-face
   Face used for valid shell in an Eshell command.
** TODO eshell-syntax-highlighting-string-face
   Face used for quoted strings in Eshell arguments.

* DONE flycheck [20/20]
  Modern on-the-fly syntax checking for GNU Emacs.
** DONE flycheck-delimited-error
   Flycheck face for errors spanning multiple lines.
** DONE flycheck-error
   Flycheck face for errors.
** DONE flycheck-error-delimiter
   Flycheck face for errors spanning multiple lines.
** DONE flycheck-error-list-checker-name
   Face for the syntax checker name in the error list.
** DONE flycheck-error-list-column-number
   Face for column numbers in the error list.
** DONE flycheck-error-list-error
   Flycheck face for error messages in the error list.
** DONE flycheck-error-list-error-message
   Face for the error message in the error list.
** DONE flycheck-error-list-filename
   Face for filenames in the error list.
** DONE flycheck-error-list-highlight
   Flycheck face to highlight errors in the error list.
** DONE flycheck-error-list-id
   Face for the error ID in the error list.
** DONE flycheck-error-list-id-with-explainer
   Face for the error ID in the error list, for errors that have an explainer.
** DONE flycheck-error-list-info
   Flycheck face for info messages in the error list.
** DONE flycheck-error-list-line-number
   Face for line numbers in the error list.
** DONE flycheck-error-list-warning
   Flycheck face for warning messages in the error list.
** DONE flycheck-fringe-error
   Flycheck face for fringe error indicators.
** DONE flycheck-fringe-info
   Flycheck face for fringe info indicators.
** DONE flycheck-fringe-warning
   Flycheck face for fringe warning indicators.
** DONE flycheck-info
   Flycheck face for informational messages.
** DONE flycheck-verify-select-checker
   Flycheck face for the 'select' button in the verify setup buffer.
** DONE flycheck-warning
   Flycheck face for warnings.

* DONE flyspell-correct [1/1]
  Correcting words with flyspell via custom interface.
** DONE flyspell-correct-highlight-face

* DONE ghostel [19/19]
** DONE ghostel-color-black
** DONE ghostel-color-blue
** DONE ghostel-color-bright-black
** DONE ghostel-color-bright-blue
** DONE ghostel-color-bright-cyan
** DONE ghostel-color-bright-green
** DONE ghostel-color-bright-magenta
** DONE ghostel-color-bright-red
** DONE ghostel-color-bright-white
** DONE ghostel-color-bright-yellow
** DONE ghostel-color-cyan
** DONE ghostel-color-green
** DONE ghostel-color-magenta
** DONE ghostel-color-red
** DONE ghostel-color-white
** DONE ghostel-color-yellow
** DONE ghostel-default
** DONE ghostel-fake-cursor
** DONE ghostel-fake-cursor-box

* DONE git-commit [12/12]
  Edit Git commit messages.
** DONE git-commit-comment-action
   Face used for actions in commit message comments.
** DONE git-commit-comment-branch-local
   Face used for names of local branches in commit message comments.
** DONE git-commit-comment-branch-remote
   Face used for names of remote branches in commit message comments.
** DONE git-commit-comment-detached
   Face used for detached 'HEAD' in commit message comments.
** DONE git-commit-comment-file
   Face used for file names in commit message comments.
** DONE git-commit-comment-heading
   Face used for headings in commit message comments.
** DONE git-commit-keyword
   Face used for keywords in commit messages.
** DONE git-commit-nonempty-second-line
   Face used for non-whitespace on the second line of commit messages.
** DONE git-commit-overlong-summary
   Face used for the tail of overlong commit message summaries.
** DONE git-commit-summary
   Face used for the summary in commit messages.
** DONE git-commit-trailer-token
   Face used for Git trailer tokens in commit messages.
** DONE git-commit-trailer-value
   Face used for Git trailer values in commit messages.

* DONE git-gutter [5/5]
  Port GitGutter
** DONE git-gutter:added
   Face of added
** DONE git-gutter:deleted
   Face of deleted
** DONE git-gutter:modified
   Face of modified
** DONE git-gutter:separator
   Face of separator
** DONE git-gutter:unchanged
   Face of unchanged

* DONE highlight-indent-guides [9/9]
  Indentation highlighting.
** DONE highlight-indent-guides-character-face
   Face to highlight guide line characters and bitmaps.
** DONE highlight-indent-guides-even-face
   Face to highlight even indent levels.
** DONE highlight-indent-guides-odd-face
   Face to highlight odd indent levels.
** DONE highlight-indent-guides-stack-character-face
   Face to highlight guide line characters and bitmaps.
** DONE highlight-indent-guides-stack-even-face
   Face to highlight even indent levels.
** DONE highlight-indent-guides-stack-odd-face
   Face to highlight odd indent levels.
** DONE highlight-indent-guides-top-character-face
   Face to highlight guide line characters and bitmaps.
** DONE highlight-indent-guides-top-even-face
   Face to highlight even indent levels.
** DONE highlight-indent-guides-top-odd-face
   Face to highlight odd indent levels.

* DONE hl-todo [2/2]
  Highlight TODO and similar keywords in comments and strings.
** DONE hl-todo
   Base face used to highlight TODO and similar keywords.
** DONE hl-todo-flymake-type
   Face used for the Flymake diagnostics type 'hl-todo-flymake'.

* DONE json-mode [1/1]
  Major mode for editing JSON.
** DONE json-mode-object-name-face

* DONE llama [5/5]
  Compact syntax for short lambda.
** DONE llama-##-macro
   Face used for the name of the '##' macro.
** DONE llama-deleted-argument
   Face used for deleted arguments '_%1'...'_%9', '_&1'...'_&9' and '_&*'.
** DONE llama-llama-macro
   Face used for the name of the 'llama' macro.
** DONE llama-mandatory-argument
   Face used for mandatory arguments '%1' through '%9' and '%'.
** DONE llama-optional-argument
   Face used for optional arguments '&1' through '&9', '&' and '&*'.

* DONE lsp [14/14]
  Language Server Protocol client.
** DONE lsp-details-face
   Used to display additional information throughout 'lsp'.
** DONE lsp-face-highlight-read
   Face used for highlighting symbols being read.
** DONE lsp-face-highlight-textual
   Face used for textual occurrences of symbols.
** DONE lsp-face-highlight-write
   Face used for highlighting symbols being written to.
** DONE lsp-face-rename
   Face used to highlight the identifier being renamed.
** DONE lsp-inlay-hint-face
   The face to use for the JavaScript inlays.
** DONE lsp-inlay-hint-parameter-face
   Face for inlay parameter hints (e.g. function parameter names at
** DONE lsp-inlay-hint-type-face
   Face for inlay type hints (e.g. inferred variable types).
** DONE lsp-installation-buffer-face
   Face used for installation buffers still in progress.
** DONE lsp-installation-finished-buffer-face
   Face used for finished installation buffers.
** DONE lsp-rename-placeholder-face
   Face used to display the rename placeholder in.
** DONE lsp-signature-face
   Used to display signatures in 'imenu', ....
** DONE lsp-signature-highlight-function-argument
   The face to use to highlight function arguments in signatures.
** DONE lsp-signature-posframe
   Background and foreground for 'lsp-signature-posframe'.

* DONE lv [1/1]
  The other echo area.
** DONE lv-separator
   Face used to draw line between the lv window and the echo area.

* DONE magit [93/93]
  Controlling Git from Emacs.
** DONE magit-bisect-bad
   Face for bad bisect revisions.
** DONE magit-bisect-good
   Face for good bisect revisions.
** DONE magit-bisect-skip
   Face for skipped bisect revisions.
** DONE magit-blame-date
   Face used for dates when blaming.
** DONE magit-blame-dimmed
   Face used for the blame margin in some cases when blaming.
** DONE magit-blame-hash
   Face used for commit hashes when blaming.
** DONE magit-blame-heading
   Face used for blame headings by default when blaming.
** DONE magit-blame-highlight
   Face used for highlighting when blaming.
** DONE magit-blame-margin
   Face used for the blame margin by default when blaming.
** DONE magit-blame-name
   Face used for author and committer names when blaming.
** DONE magit-blame-summary
   Face used for commit summaries when blaming.
** DONE magit-branch-current
   Face for current branch.
** DONE magit-branch-local
   Face for local branches.
** DONE magit-branch-remote
   Face for remote branch head labels shown in log buffer.
** DONE magit-branch-remote-head
   Face for current branch.
** DONE magit-branch-upstream
   Face for upstream branch.
** DONE magit-branch-warning
   Face for warning about (missing) branch.
** DONE magit-cherry-equivalent
   Face for equivalent cherry commits.
** DONE magit-cherry-unmatched
   Face for unmatched cherry commits.
** DONE magit-diff-added
   Face for lines in a diff that have been added.
** DONE magit-diff-added-highlight
   Face for lines in a diff that have been added.
** DONE magit-diff-base
   Face for lines in a diff for the base side in a conflict.
** DONE magit-diff-base-highlight
   Face for lines in a diff for the base side in a conflict.
** DONE magit-diff-conflict-heading
   Face for conflict markers.
** DONE magit-diff-conflict-heading-highlight
   Face for conflict markers.
** DONE magit-diff-context
   Face for lines in a diff that are unchanged.
** DONE magit-diff-context-highlight
   Face for lines in the current context in a diff.
** DONE magit-diff-file-heading
   Face for diff file headings.
** DONE magit-diff-file-heading-highlight
   Face for current diff file headings.
** DONE magit-diff-file-heading-selection
   Face for selected diff file headings.
** DONE magit-diff-hunk-heading
   Face for diff hunk headings.
** DONE magit-diff-hunk-heading-highlight
   Face for current diff hunk headings.
** DONE magit-diff-hunk-heading-selection
   Face for selected diff hunk headings.
** DONE magit-diff-hunk-region
   Face used by 'magit-diff-highlight-hunk-region-using-face'.
** DONE magit-diff-lines-boundary
   Face for boundary of marked lines in diff hunk.
** DONE magit-diff-lines-heading
   Face for diff hunk heading when lines are marked.
** DONE magit-diff-our
   Face for lines in a diff for our side in a conflict.
** DONE magit-diff-our-highlight
   Face for lines in a diff for our side in a conflict.
** DONE magit-diff-removed
   Face for lines in a diff that have been removed.
** DONE magit-diff-removed-highlight
   Face for lines in a diff that have been removed.
** DONE magit-diff-revision-summary
   Face for commit message summaries.
** DONE magit-diff-revision-summary-highlight
   Face for highlighted commit message summaries.
** DONE magit-diff-their
   Face for lines in a diff for their side in a conflict.
** DONE magit-diff-their-highlight
   Face for lines in a diff for their side in a conflict.
** DONE magit-diff-whitespace-warning
   Face for highlighting whitespace errors added lines.
** DONE magit-diffstat-added
   Face for addition indicator in diffstat.
** DONE magit-diffstat-removed
   Face for removal indicator in diffstat.
** DONE magit-dimmed
   Face for text that shouldn't stand out.
** DONE magit-filename
   Face for filenames.
** DONE magit-hash
   Face for the commit object name in the log output.
** DONE magit-head
   Face for the symbolic ref 'HEAD'.
** DONE magit-header-line
   Face for the 'header-line' in some Magit modes.
** DONE magit-header-line-key
   Face for keys in the 'header-line'.
** DONE magit-header-line-log-select
   Face for the 'header-line' in 'magit-log-select-mode'.
** DONE magit-keyword
   Face for parts of commit messages inside brackets.
** DONE magit-keyword-squash
   Face for squash! and similar keywords in commit messages.
** DONE magit-left-margin
   Face used for the left margin.
** DONE magit-log-author
   Face for the author part of the log output.
** DONE magit-log-date
   Face for the date part of the log output.
** DONE magit-log-graph
   Face for the graph part of the log output.
** DONE magit-mode-line-process
   Face for 'mode-line-process' status when Git is running for side-effects.
** DONE magit-mode-line-process-error
   Face for 'mode-line-process' error status.
** DONE magit-process-ng
   Face for non-zero exit-status.
** DONE magit-process-ok
   Face for zero exit-status.
** DONE magit-reflog-amend
   Face for amend commands in reflogs.
** DONE magit-reflog-checkout
   Face for checkout commands in reflogs.
** DONE magit-reflog-cherry-pick
   Face for cherry-pick commands in reflogs.
** DONE magit-reflog-commit
   Face for commit commands in reflogs.
** DONE magit-reflog-merge
   Face for merge, checkout and branch commands in reflogs.
** DONE magit-reflog-other
   Face for other commands in reflogs.
** DONE magit-reflog-rebase
   Face for rebase commands in reflogs.
** DONE magit-reflog-remote
   Face for pull and clone commands in reflogs.
** DONE magit-reflog-reset
   Face for reset commands in reflogs.
** DONE magit-refname
   Face for refnames without a dedicated face.
** DONE magit-refname-pullreq
   Face for pullreq refnames.
** DONE magit-refname-stash
   Face for stash refnames.
** DONE magit-refname-wip
   Face for wip refnames.
** DONE magit-sequence-done
   Face used in sequence sections.
** DONE magit-sequence-drop
   Face used in sequence sections.
** DONE magit-sequence-exec
   Face used in sequence sections.
** DONE magit-sequence-head
   Face used in sequence sections.
** DONE magit-sequence-onto
   Face used in sequence sections.
** DONE magit-sequence-part
   Face used in sequence sections.
** DONE magit-sequence-pick
   Face used in sequence sections.
** DONE magit-sequence-stop
   Face used in sequence sections.
** DONE magit-signature-bad
   Face for bad signatures.
** DONE magit-signature-error
   Face for signatures that cannot be checked (e.g., missing key).
** DONE magit-signature-expired
   Face for signatures that have expired.
** DONE magit-signature-expired-key
   Face for signatures made by an expired key.
** DONE magit-signature-good
   Face for good signatures.
** DONE magit-signature-revoked
   Face for signatures made by a revoked key.
** DONE magit-signature-untrusted
   Face for good untrusted signatures.
** DONE magit-tag
   Face for tag labels shown in log buffer.

* DONE magit-section [5/5]
  Expandable sections.
** DONE magit-section-child-count
   Face used for child counts at the end of some section headings.
** DONE magit-section-heading
   Face for section headings.
** DONE magit-section-heading-selection
   Face for selected section headings.
** DONE magit-section-highlight
   Face for highlighting the current section.
** DONE magit-section-secondary-heading
   Face for section headings of some secondary headings.

* DONE malyon [5/5]
  Mode to execute Z-code files version 3, 5, 8.
** DONE malyon-face-bold
** DONE malyon-face-error
** DONE malyon-face-italic
** DONE malyon-face-plain
** DONE malyon-face-reverse

* DONE marginalia [32/32]
  Enrich existing commands with completion annotations.
** DONE marginalia-archive
   Face used to highlight package archives.
** DONE marginalia-char
   Face used to highlight character annotations.
** DONE marginalia-date
   Face used to highlight dates.
** DONE marginalia-documentation
   Face used to highlight documentation strings.
** DONE marginalia-file-name
   Face used to highlight file names.
** DONE marginalia-file-owner
   Face used to highlight file owner and group names.
** DONE marginalia-file-priv-dir
   Face used to highlight the dir file privilege attribute.
** DONE marginalia-file-priv-exec
   Face used to highlight the exec file privilege attribute.
** DONE marginalia-file-priv-link
   Face used to highlight the link file privilege attribute.
** DONE marginalia-file-priv-no
   Face used to highlight the no file privilege attribute.
** DONE marginalia-file-priv-other
   Face used to highlight some other file privilege attribute.
** DONE marginalia-file-priv-rare
   Face used to highlight a rare file privilege attribute.
** DONE marginalia-file-priv-read
   Face used to highlight the read file privilege attribute.
** DONE marginalia-file-priv-write
   Face used to highlight the write file privilege attribute.
** DONE marginalia-function
   Face used to highlight function symbols.
** DONE marginalia-installed
   Face used to highlight the status of packages.
** DONE marginalia-key
   Face used to highlight keys.
** DONE marginalia-lighter
   Face used to highlight minor mode lighters.
** DONE marginalia-list
   Face used to highlight list expressions.
** DONE marginalia-mode
   Face used to highlight buffer major modes.
** DONE marginalia-modified
   Face used to highlight buffer modification indicators.
** DONE marginalia-null
   Face used to highlight null or unbound variable values.
** DONE marginalia-number
   Face used to highlight numeric values.
** DONE marginalia-off
   Face used to signal disabled modes.
** DONE marginalia-on
   Face used to signal enabled modes.
** DONE marginalia-size
   Face used to highlight sizes.
** DONE marginalia-string
   Face used to highlight string values.
** DONE marginalia-symbol
   Face used to highlight general symbols.
** DONE marginalia-true
   Face used to highlight true variable values.
** DONE marginalia-type
   Face used to highlight types.
** DONE marginalia-value
   Face used to highlight general variable values.
** DONE marginalia-version
   Face used to highlight package versions.

* DONE markdown [43/43]
  Major mode for editing text files in Markdown format.
** DONE markdown-blockquote-face
   Face for blockquote sections.
** DONE markdown-bold-face
   Face for bold text.
** DONE markdown-code-face
   Face for inline code, pre blocks, and fenced code blocks.
** DONE markdown-comment-face
   Face for HTML comments.
** DONE markdown-footnote-marker-face
   Face for footnote markers.
** DONE markdown-footnote-text-face
   Face for footnote text.
** DONE markdown-gfm-checkbox-face
   Face for GFM checkboxes.
** DONE markdown-header-delimiter-face
   Base face for headers hash delimiter.
** DONE markdown-header-face
   Base face for headers.
** DONE markdown-header-face-1
   Face for level 1 headers.
** DONE markdown-header-face-2
   Face for level 2 headers.
** DONE markdown-header-face-3
   Face for level 3 headers.
** DONE markdown-header-face-4
   Face for level 4 headers.
** DONE markdown-header-face-5
   Face for level 5 headers.
** DONE markdown-header-face-6
   Face for level 6 headers.
** DONE markdown-header-rule-face
   Base face for headers rules.
** DONE markdown-highlight-face
   Face for mouse highlighting.
** DONE markdown-highlighting-face
   Face for highlighting.
** DONE markdown-hr-face
   Face for horizontal rules.
** DONE markdown-html-attr-name-face
   Face for HTML attribute names.
** DONE markdown-html-attr-value-face
   Face for HTML attribute values.
** DONE markdown-html-entity-face
   Face for HTML entities.
** DONE markdown-html-tag-delimiter-face
   Face for HTML tag delimiters.
** DONE markdown-html-tag-name-face
   Face for HTML tag names.
** DONE markdown-inline-code-face
   Face for inline code.
** DONE markdown-italic-face
   Face for italic text.
** DONE markdown-language-info-face
   Face for programming language info strings.
** DONE markdown-language-keyword-face
   Face for programming language identifiers.
** DONE markdown-line-break-face
   Face for hard line breaks.
** DONE markdown-link-face
   Face for link text, ie the alias portion of a link.
** DONE markdown-link-title-face
   Face for reference link titles.
** DONE markdown-list-face
   Face for list item markers.
** DONE markdown-markup-face
   Face for markup elements.
** DONE markdown-math-face
   Face for LaTeX expressions.
** DONE markdown-metadata-key-face
   Face for metadata keys.
** DONE markdown-metadata-value-face
   Face for metadata values.
** DONE markdown-missing-link-face
   Face for the link text if the link points to a missing file.
** DONE markdown-plain-url-face
   Face for URLs that are also links.
** DONE markdown-pre-face
   Face for preformatted text.
** DONE markdown-reference-face
   Face for link references.
** DONE markdown-strike-through-face
   Face for strike-through text.
** DONE markdown-table-face
   Face for tables.
** DONE markdown-url-face
   Face for URLs that are part of markup.

* DOING nerd-icons [34/39]
  Manage how Nerd Fonts formats icons.
** DONE nerd-icons-blue
   Face for blue icons.
** DONE nerd-icons-blue-alt
   Face for blue icons.
** DONE nerd-icons-cyan
   Face for cyan icons.
** DONE nerd-icons-cyan-alt
   Face for cyan icons.
** DONE nerd-icons-dblue
   Face for dblue icons.
** DONE nerd-icons-dcyan
   Face for dcyan icons.
** DONE nerd-icons-dgreen
   Face for dgreen icons.
** DONE nerd-icons-dmaroon
   Face for dmaroon icons.
** DONE nerd-icons-dorange
   Face for dorange icons.
** DONE nerd-icons-dpink
   Face for dpink icons.
** DONE nerd-icons-dpurple
   Face for dpurple icons.
** DONE nerd-icons-dred
   Face for dred icons.
** DONE nerd-icons-dsilver
   Face for dsilver icons.
** DONE nerd-icons-dyellow
   Face for dyellow icons.
** DONE nerd-icons-green
   Face for green icons.
** TODO nerd-icons-ibuffer-dir-face
   Face used for the directory icon.
** TODO nerd-icons-ibuffer-file-face
   Face used for the filename/process.
** TODO nerd-icons-ibuffer-icon-face
   Face used for the icons while 'nerd-icons-ibuffer-color-icon' is nil.
** TODO nerd-icons-ibuffer-mode-face
   Face used for the major mode.
** TODO nerd-icons-ibuffer-size-face
   Face used for the size.
** DONE nerd-icons-lblue
   Face for lblue icons.
** DONE nerd-icons-lcyan
   Face for lcyan icons.
** DONE nerd-icons-lgreen
   Face for lgreen icons.
** DONE nerd-icons-lmaroon
   Face for lmaroon icons.
** DONE nerd-icons-lorange
   Face for lorange icons.
** DONE nerd-icons-lpink
   Face for lpink icons.
** DONE nerd-icons-lpurple
   Face for lpurple icons.
** DONE nerd-icons-lred
   Face for lred icons.
** DONE nerd-icons-lsilver
   Face for lsilver icons.
** DONE nerd-icons-lyellow
   Face for lyellow icons.
** DONE nerd-icons-maroon
   Face for maroon icons.
** DONE nerd-icons-orange
   Face for orange icons.
** DONE nerd-icons-pink
   Face for pink icons.
** DONE nerd-icons-purple
   Face for purple icons.
** DONE nerd-icons-purple-alt
   Face for purple icons.
** DONE nerd-icons-red
   Face for red icons.
** DONE nerd-icons-red-alt
   Face for dred icons.
** DONE nerd-icons-silver
   Face for silver icons.
** DONE nerd-icons-yellow
   Face for yellow icons.

* DONE nerd-icons-completion [1/1]
  Add icons to completion candidates.
** DONE nerd-icons-completion-dir-face
   Face for the directory icon.

* DONE orderless [4/4]
  Completion method that matches space-separated regexps in any order.
** DONE orderless-match-face-0
   Face for matches of components numbered 0 mod 4.
** DONE orderless-match-face-1
   Face for matches of components numbered 1 mod 4.
** DONE orderless-match-face-2
   Face for matches of components numbered 2 mod 4.
** DONE orderless-match-face-3
   Face for matches of components numbered 3 mod 4.

* DONE org-roam [9/9]
  A database abstraction layer for Org-mode.
** DONE org-roam-dailies-calendar-note
   Face for dates with a daily-note in the calendar.
** DONE org-roam-dim
   Face for the dimmer part of the widgets.
** DONE org-roam-header-line
   Face for the 'header-line' in some Org-roam modes.
** DONE org-roam-olp
   Face for the OLP of the node.
** DONE org-roam-preview-heading
   Face for preview headings.
** DONE org-roam-preview-heading-highlight
   Face for current preview headings.
** DONE org-roam-preview-heading-selection
   Face for selected preview headings.
** DONE org-roam-preview-region
   Face used by 'org-roam-highlight-preview-region-using-face'.
** DONE org-roam-title
   Face for Org-roam titles.

* DOING org-superstar [4/5]
  Use UTF8 bullets for headlines and plain lists.
** DONE org-superstar-first
   Face used to display the first bullet of an inline task.
** DONE org-superstar-header-bullet
   Face containing distinguishing features headline bullets.
** DONE org-superstar-item
   Face used to display prettified item bullets.
** DONE org-superstar-leading
   Face used to display prettified leading stars in a headline.
** TODO org-superstar-ordered-item
   Face used to display ordered list item bullets.

* DONE prescient [2/2]
  Simple but effective candidate sorting by usage.
** DONE prescient-primary-highlight
   Face used to highlight the parts of candidates that match the input.
** DONE prescient-secondary-highlight
   Additional face used to highlight parts of candidates.

* DONE rainbow-delimiters [13/13]
  Highlight nested parentheses, brackets, and braces according to their depth.
** DONE rainbow-delimiters-base-error-face
   Face inherited by all other rainbow-delimiter error faces.
** DONE rainbow-delimiters-base-face
   Face inherited by all other rainbow-delimiter faces.
** DONE rainbow-delimiters-depth-1-face
   Nested delimiter face, depth 1.
** DONE rainbow-delimiters-depth-2-face
   Nested delimiter face, depth 2.
** DONE rainbow-delimiters-depth-3-face
   Nested delimiter face, depth 3.
** DONE rainbow-delimiters-depth-4-face
   Nested delimiter face, depth 4.
** DONE rainbow-delimiters-depth-5-face
   Nested delimiter face, depth 5.
** DONE rainbow-delimiters-depth-6-face
   Nested delimiter face, depth 6.
** DONE rainbow-delimiters-depth-7-face
   Nested delimiter face, depth 7.
** DONE rainbow-delimiters-depth-8-face
   Nested delimiter face, depth 8.
** DONE rainbow-delimiters-depth-9-face
   Nested delimiter face, depth 9.
** DONE rainbow-delimiters-mismatched-face
   Face to highlight mismatched closing delimiters in.
** DONE rainbow-delimiters-unmatched-face
   Face to highlight unmatched closing delimiters in.

* TODO slack [0/57]
  Emacs Slack Client
** TODO slack-all-thread-buffer-thread-header-face
   Face used to All Threads buffer's each threads header.
** TODO slack-attachment-field-title
   Face used to attachment field title.
** TODO slack-attachment-footer
   Face used to shared message footer.
** TODO slack-attachment-header
   Face used to shared message header.
** TODO slack-attachment-pad
   Face used to shared message pad.
** TODO slack-block-highlight-source-overlay-face
   If non-nil, highlight source blocks in messages.
** TODO slack-button-block-element-face
   Used to button block element
** TODO slack-button-danger-block-element-face
   Used to danger button block element
** TODO slack-button-primary-block-element-face
   Used to primary button block element
** TODO slack-channel-button-face
   Face used to channel button.
** TODO slack-date-picker-block-element-face
   Used to date picker block element
** TODO slack-dialog-cancel-button-face
   Used to dialog's cancel button
** TODO slack-dialog-element-error-face
   Used to dialog's element error message
** TODO slack-dialog-element-hint-face
   Used to dialog's element hint
** TODO slack-dialog-element-label-face
   Used to dialog's element label
** TODO slack-dialog-element-placeholder-face
   Used to dialog's element placeholder
** TODO slack-dialog-select-element-input-face
   Used to dialog's select element input
** TODO slack-dialog-submit-button-face
   Used to dialog's submit button
** TODO slack-dialog-title-face
   Used to dialog's title
** TODO slack-message-action-danger-face
   Face used to danger action.
** TODO slack-message-action-face
   Face used to action.
** TODO slack-message-action-primary-face
   Face used to primary action.
** TODO slack-message-attachment-preview-header-face
   Used to attachment preview header
** TODO slack-message-deleted-face
   Face used to deleted message.
** TODO slack-message-mention-face
   Face used to mention.
** TODO slack-message-mention-keyword-face
   Face used to @here, @channel, @everyone mention.
** TODO slack-message-mention-me-face
   Face used to mention.
** TODO slack-message-output-header
   Face used to text message.
** TODO slack-message-output-reaction
   Face used to reactions.
** TODO slack-message-output-reaction-pressed
   Face used to reactions pressed by user.
** TODO slack-message-output-text
   Face used to text message.
** TODO slack-modeline-channel-has-unreads-face
   Face used to channel has unreads message in modeline
** TODO slack-modeline-has-unreads-face
   Face used to team has unreads message in modeline
** TODO slack-modeline-thread-has-unreads-face
   Face used to thread has unreads message in modeline
** TODO slack-mrkdwn-blockquote-face
   Face used to '>'
** TODO slack-mrkdwn-bold-face
   Face used to between '*'
** TODO slack-mrkdwn-code-block-face
   Face used to between '''''
** TODO slack-mrkdwn-code-face
   Face used to between '''
** TODO slack-mrkdwn-italic-face
   Face used to between '_'
** TODO slack-mrkdwn-list-face
   Face used to mrkdwn list
** TODO slack-mrkdwn-strike-face
   Face used to between '~'
** TODO slack-new-message-marker-face
   Face used to New Message Marker.
** TODO slack-overflow-block-element-face
   Used to overflow block element
** TODO slack-preview-face
   Used preview text and code blocks
** TODO slack-profile-image-face
   Face used to profile image.
** TODO slack-room-info-section-label-face
   Used to room info section title.
** TODO slack-room-info-section-title-face
   Used to room info section title.
** TODO slack-room-info-title-face
   Used to room info title.
** TODO slack-room-info-title-room-name-face
   Used to room info title.
** TODO slack-room-unread-face
   Face used to mark a room as unread when selecting channels.
** TODO slack-search-result-message-header-face
   Face used to search message header.
** TODO slack-search-result-message-username-face
** TODO slack-select-block-element-face
   Used to select block element
** TODO slack-user-active-face
   Used to 'slack-user-active-string'
** TODO slack-user-dnd-face
   Used to 'slack-user-dnd-sign'
** TODO slack-user-profile-header-face
   Face used to user profile header.
** TODO slack-user-profile-property-name-face
   Face used to user property.

* DONE symbol-overlay [9/9]
  Highlight symbols with keymap-enabled overlays.
** DONE symbol-overlay-default-face
   Symbol Overlay default face
** DONE symbol-overlay-face-1
   Symbol Overlay default candidate 1
** DONE symbol-overlay-face-2
   Symbol Overlay default candidate 2
** DONE symbol-overlay-face-3
   Symbol Overlay default candidate 3
** DONE symbol-overlay-face-4
   Symbol Overlay default candidate 4
** DONE symbol-overlay-face-5
   Symbol Overlay default candidate 5
** DONE symbol-overlay-face-6
   Symbol Overlay default candidate 6
** DONE symbol-overlay-face-7
   Symbol Overlay default candidate 7
** DONE symbol-overlay-face-8
   Symbol Overlay default candidate 8

* TODO telega [0/91]
  Telegram client.
** TODO telega-blue
   *Official blue color of telegram.
** TODO telega-box-button
   Face used for telega buttons.
** TODO telega-box-button-active
   Face used for active (cursor inside) telega buttons.
** TODO telega-box-button-danger-active
   Face for active button of TL buttonStyleDanger style.
** TODO telega-box-button-danger-passive
   Face for passive button of TL buttonStyleDanger style.
** TODO telega-box-button-default-active
   Face for active button of TL buttonStyleDefault style.
** TODO telega-box-button-default-passive
   Face for passive button of TL buttonStyleDefault style.
** TODO telega-box-button-primary-active
   Face for active button of TL buttonStylePrimary style.
** TODO telega-box-button-primary-passive
   Face for passive button of TL buttonStylePrimary style.
** TODO telega-box-button-success-active
   Face for active button of TL buttonStyleSuccess style.
** TODO telega-box-button-success-passive
   Face for passive button of TL buttonStyleSuccess style.
** TODO telega-box-button-ui-active
   Face used for active (cursor inside) telega UI buttons.
** TODO telega-box-button-ui-passive
   Face used for telega UI buttons.
** TODO telega-box-button2-active
   Face to display passive buttons.
** TODO telega-box-button2-passive
   Face to display passive buttons.
** TODO telega-box-button2-white-foreground
   Face for white foreground.
** TODO telega-button-highlight
   Face used to highlight active button.
** TODO telega-chat-input-attachment
   Face for chat input attachments.
** TODO telega-chat-prompt
   Face for chat input prompt
** TODO telega-chat-prompt-aux
   Face to use in the 'telega-chatbuf-footer-ins-aux-plist' inserter.
** TODO telega-checklist-stats-done
   Face for checklist stats when all tasks are done.
** TODO telega-checklist-stats-todo
   Face for checklist stats when some tasks are undone.
** TODO telega-contact-birthdays-today
   Face to use if contact birthday is today.
** TODO telega-delim-face
   Face used to display horizontal delimiters.
** TODO telega-describe-item-title
   Face used for item title in help buffers.
** TODO telega-describe-section-title
   Face used for section title in help buffers.
** TODO telega-describe-subsection-title
   Face used for subsection title in help buffers.
** TODO telega-enckey-00
   Face used for encryption key
** TODO telega-enckey-01
   Face used for encryption key
** TODO telega-enckey-10
   Face used for encryption key
** TODO telega-enckey-11
   Face used for encryption key
** TODO telega-entity-type-blockquote
   Face to display block quote formatting.
** TODO telega-entity-type-bold
   Face to display bold text.
** TODO telega-entity-type-botcommand
   Face to display /command if there is bot in chat.
** TODO telega-entity-type-cashtag
   Face to display $USD cashtags
** TODO telega-entity-type-code
   Face to display code.
** TODO telega-entity-type-hashtag
   Face to display #hashtags.
** TODO telega-entity-type-italic
   Face to display italic text.
** TODO telega-entity-type-mention
   Face to display @mentions.
** TODO telega-entity-type-pre
   Face to display text ala <pre> HTML tag.
** TODO telega-entity-type-spoiler
   Face to display spoilers in the text.
** TODO telega-entity-type-strikethrough
   Face to display strikethrough text.
** TODO telega-entity-type-texturl
   Face to display urls.
** TODO telega-entity-type-underline
   Face to display underline text.
** TODO telega-filter-active
   Face to emphasize active chat filter other then 'telega-filter-default'.
** TODO telega-filter-button-active
   *Face to use for active custom filters.
** TODO telega-filter-button-inactive
   *Face to use for inactive custom filters.
** TODO telega-has-chatbuf-brackets
   Face to emphasize brackets for chats having corresponding chatbuf.
** TODO telega-highlight-text-face
   Face used to highlight text in 'telega-highlight-text-mode'.
** TODO telega-link
   Face to display various links.
** TODO telega-link-preview-sitename
   Face to display link preview site_name.
** TODO telega-link-preview-title
   Face to display link preview title.
** TODO telega-mention-count
   Face to display count of the mentions.
** TODO telega-msg-deleted
   Face used to display deleted messages.
** TODO telega-msg-heading
   Face to display messages header.
** TODO telega-msg-inline-forward
   Face to highlight message forwarding header.
** TODO telega-msg-inline-other
   Face to highlight other message headers, such as translate/summarize.
** TODO telega-msg-inline-reply
   Face to highlight replies to messages.
** TODO telega-msg-self-title
   Face to display title of myself in chat buffers.
** TODO telega-msg-sponsored
   Face to display sponsored message.
** TODO telega-msg-user-title
   Face to display user title in chat buffers.
** TODO telega-muted-count
   Face to display count of messages in muted chats.
** TODO telega-palette-builtin-blue
   Face for builtin blue.
** TODO telega-palette-builtin-green
   Face for builtin green.
** TODO telega-palette-builtin-orange
   Face for builtin orange.
** TODO telega-palette-builtin-purple
   Face for builtin purple/violet.
** TODO telega-reaction
   Face used to display reaction.
** TODO telega-reaction-chosen
   Face used to display chosen reaction.
** TODO telega-reaction-paid
   Face used to display reaction.
** TODO telega-reaction-paid-chosen
   Face used to display chosen paid reaction
** TODO telega-red
   *Face for dangerous actions, such as deletion.
** TODO telega-root-heading
   Face used to display headings, such as GLOBAL SEARCH, in root buffer.
** TODO telega-secret-title
   Face to display title of secret chat in root buffer.
** TODO telega-shadow
   Face used to display shadowed text in telega.
** TODO telega-topic-button
   Face to display topic button in the rootbuf.
** TODO telega-tracking
   Face to display tracking mode-line notifications.
** TODO telega-unmuted-count
   Face to display count messages in unmuted chats.
** TODO telega-unread-unmuted-modeline
   Face used to display number of unread/unmuted messages in modeline.
** TODO telega-user-non-online-status
   Face to display user status if non-online.
** TODO telega-user-online-status
   Face to display user status if online.
** TODO telega-username
   Face to display username for chats/users.
** TODO telega-webpage-chat-link
   Face to display 'pageBlockChatLink' web page blocks
** TODO telega-webpage-fixed
   Face to display fixed text in webpage instant view.
** TODO telega-webpage-header
   Face to display header in webpage instant view.
** TODO telega-webpage-marked
   Face to display marked rich text in a webpage instant view.
** TODO telega-webpage-outline
   Face to display text with different background.
** TODO telega-webpage-preformatted
   Face to display preformatted text in webpage instant view.
** TODO telega-webpage-strike-through
   Face to display strike through RichText.
** TODO telega-webpage-subheader
   Face to display subheader in webpage instant view.
** TODO telega-webpage-subtitle
   Face to display subtitle in webpage instant view.
** TODO telega-webpage-title
   Face to display title in webpage instant view.

* DOING tmr [12/17]
  TMR May Ring: set timers using a simple notation.
** DONE tmr-description
   Face for styling the description of a timer.
** DONE tmr-duration
   Face for styling the duration of a timer.
** DONE tmr-end-time
   Face for styling the start time of a timer.
** DONE tmr-finished
   Face for styling the description of a finished timer.
** DONE tmr-is-acknowledged
   Face for styling the acknowledgment confirmation.
** TODO tmr-mode-line-active
   Face for active timers in the mode-line.
** TODO tmr-mode-line-soon
   Face for timers that will expire in the next 2 minutes.
** TODO tmr-mode-line-urgent
   Face for timers that will expire in the next 30 seconds.
** DONE tmr-must-be-acknowledged
   Face for styling the acknowledgment confirmation.
** TODO tmr-paused
   Face for styling the description of a paused timer.
** DONE tmr-start-time
   Face for styling the start time of a timer.
** DONE tmr-tabulated-acknowledgement
   Acknowledgement indicator in the 'tmr-tabulated-view'.
** DONE tmr-tabulated-description
   Description of timer in the 'tmr-tabulated-view'.
** DONE tmr-tabulated-end-time
   End time in the 'tmr-tabulated-view'.
** TODO tmr-tabulated-paused
   Face for styling the description of a paused timer.
** DONE tmr-tabulated-remaining-time
   Remaining time in the 'tmr-tabulated-view'.
** DONE tmr-tabulated-start-time
   Start time in the 'tmr-tabulated-view'.

* DONE transient [23/23]
  Transient commands.
** DONE transient-active-infix
   Face used for the infix for which the value is being read.
** DONE transient-argument
   Face used for enabled arguments.
** DONE transient-delimiter
   Face used for delimiters and separators.
** DONE transient-disabled-suffix
   Face used for disabled levels while editing suffix levels.
** DONE transient-enabled-suffix
   Face used for enabled levels while editing suffix levels.
** DONE transient-heading
   Face used for headings.
** DONE transient-higher-level
   Face optionally used to highlight suffixes on higher levels.
** DONE transient-inactive-argument
   Face used for inactive arguments.
** DONE transient-inactive-value
   Face used for inactive values.
** DONE transient-inapt-argument
   Face used for inapt arguments with a (currently ignored) value.
** DONE transient-inapt-suffix
   Face used for suffixes that are inapt at this time.
** DONE transient-key
   Face used for keys.
** DONE transient-key-exit
   Face used for keys of suffixes that exit the menu.
** DONE transient-key-noop
   Face used for keys of suffixes that currently cannot be invoked.
** DONE transient-key-recurse
   Face used for keys of sub-menus whose suffixes return to the parent menu.
** DONE transient-key-return
   Face used for keys of suffixes that return to the parent menu.
** DONE transient-key-stack
   Face used for keys of sub-menus that exit the parent menu.
** DONE transient-key-stay
   Face used for keys of suffixes that don't exit the menu.
** DONE transient-mismatched-key
   Face optionally used to highlight keys without a short-argument.
** DONE transient-nonstandard-key
   Face optionally used to highlight keys conflicting with short-argument.
** DONE transient-unreachable
   Face used for suffixes unreachable from the current prefix sequence.
** DONE transient-unreachable-key
   Face used for keys unreachable from the current prefix sequence.
** DONE transient-value
   Face used for values.

* DONE twentyfortyeight [11/11]
  Tile faces for the 2048 game.
** DONE twentyfortyeight-face-1024
** DONE twentyfortyeight-face-128
** DONE twentyfortyeight-face-16
** DONE twentyfortyeight-face-2
** DONE twentyfortyeight-face-2048
** DONE twentyfortyeight-face-256
** DONE twentyfortyeight-face-32
** DONE twentyfortyeight-face-4
** DONE twentyfortyeight-face-512
** DONE twentyfortyeight-face-64
** DONE twentyfortyeight-face-8

* DONE vertico [4/4]
  VERTical Interactive COmpletion.
** DONE vertico-current
   Face used to highlight the currently selected candidate.
** DONE vertico-group-separator
   Face used for the separator lines of the candidate groups.
** DONE vertico-group-title
   Face used for the title text of the candidate group headlines.
** DONE vertico-multiline
   Face used to highlight multiline replacement characters.

* DONE web-mode [81/81]
  Major mode for editing web templates
** DONE web-mode-annotation-face
   Face for code annotations.
** DONE web-mode-annotation-html-face
   Face for HTML tags in code annotations.
** DONE web-mode-annotation-tag-face
   Face for @tags in code annotations.
** DONE web-mode-annotation-type-face
   Face for types in code annotations.
** DONE web-mode-annotation-value-face
   Face for values in code annotations.
** DONE web-mode-block-attr-name-face
   Face for block attribute names.
** DONE web-mode-block-attr-value-face
   Face for block attribute values.
** DONE web-mode-block-comment-face
   Face for server comments.
** DONE web-mode-block-control-face
   Face for preprocessor.
** DONE web-mode-block-delimiter-face
   Face for block delimiters.
** DONE web-mode-block-face
   Face for blocks (useful for setting a background for example).
** DONE web-mode-block-string-face
   Face for block strings.
** DONE web-mode-bold-face
   bold face.
** DONE web-mode-builtin-face
   Face for builtins.
** DONE web-mode-comment-face
   Face for comments.
** DONE web-mode-comment-keyword-face
   Comment keywords.
** DONE web-mode-constant-face
   Face for language constants.
** DONE web-mode-css-at-rule-face
   Face for CSS at-rules.
** DONE web-mode-css-color-face
   Face for CSS colors (#xxx).
** DONE web-mode-css-comment-face
   Face for css comments.
** DONE web-mode-css-function-face
   Face for CSS functions.
** DONE web-mode-css-priority-face
   Face for CSS priority (!important).
** DONE web-mode-css-property-name-face
   Face for CSS props.
** DONE web-mode-css-pseudo-class-face
   Face for CSS pseudo-classes.
** DONE web-mode-css-selector-class-face
   Face for CSS class rules.
** DONE web-mode-css-selector-face
   Face for CSS rules.
** DONE web-mode-css-selector-tag-face
   Face for CSS tag rules.
** DONE web-mode-css-string-face
   Face for css strings.
** DONE web-mode-css-variable-face
   Face for CSS vars.
** DONE web-mode-current-column-highlight-face
   Overlay face for current column.
** DONE web-mode-current-element-highlight-face
   Overlay face for element highlight.
** DONE web-mode-doctype-face
   Face for html doctype.
** DONE web-mode-error-face
   Face for warning.
** DONE web-mode-filter-face
   Face for function names.
** DONE web-mode-folded-face
   Overlay face for folded.
** DONE web-mode-function-call-face
   Face for function calls.
** DONE web-mode-function-name-face
   Face for function names.
** DONE web-mode-html-attr-custom-face
   Face for custom attribute names (e.g. data-*).
** DONE web-mode-html-attr-engine-face
   Face for custom engine attribute names (e.g. ng-*).
** DONE web-mode-html-attr-equal-face
   Face for the = character between name and value.
** DONE web-mode-html-attr-name-face
   Face for html attribute names.
** DONE web-mode-html-attr-value-face
   Face for html attribute values.
** DONE web-mode-html-entity-face
   Face html entities (e.g. &#8211;, &eacute;).
** DONE web-mode-html-tag-bracket-face
   Face for html tags angle brackets (<, > and />).
** DONE web-mode-html-tag-custom-face
   Face for html custom tags (e.g. <polymer-element>).
** DONE web-mode-html-tag-face
   Face for html tags.
** DONE web-mode-html-tag-namespaced-face
   Face for html namespaced tags (e.g. <c:forEach>).
** DONE web-mode-html-tag-unclosed-face
   Face for unclosed tags.
** DONE web-mode-inlay-face
   Face for inlays. Must be used in conjunction with web-mode-enable-inlays.
** DONE web-mode-interpolate-color1-face
   Face for element interpolation strings.
** DONE web-mode-interpolate-color2-face
   Face for element interpolation strings.
** DONE web-mode-interpolate-color3-face
   Face for element interpolation strings.
** DONE web-mode-interpolate-color4-face
   Face for element interpolation strings.
** DONE web-mode-italic-face
   bold face.
** DONE web-mode-javascript-comment-face
   Face for javascript comments.
** DONE web-mode-javascript-string-face
   Face for javascript strings.
** DONE web-mode-json-comment-face
   Face for json comments.
** DONE web-mode-json-context-face
   Face for json context strings.
** DONE web-mode-json-key-face
   Face for json key strings.
** DONE web-mode-json-string-face
   Face for json strings.
** DONE web-mode-jsx-depth-1-face
   jsx depth 1
** DONE web-mode-jsx-depth-2-face
   jsx
** DONE web-mode-jsx-depth-3-face
   jsx
** DONE web-mode-jsx-depth-4-face
   jsx
** DONE web-mode-jsx-depth-5-face
   jsx
** DONE web-mode-keyword-face
   Face for language keywords.
** DONE web-mode-param-name-face
   Face for server attribute names.
** DONE web-mode-part-comment-face
   Face for part comments.
** DONE web-mode-part-face
   Face for parts.
** DONE web-mode-part-string-face
   Face for part strings.
** DONE web-mode-preprocessor-face
   Face for preprocessor commands.
** DONE web-mode-script-face
   Face for javascript inside a script element.
** DONE web-mode-sql-keyword-face
   Sql keywords.
** DONE web-mode-string-face
   Face for strings.
** DONE web-mode-style-face
   Face for css inside a style element.
** DONE web-mode-symbol-face
   Face for symbols.
** DONE web-mode-type-face
   Face for language types.
** DONE web-mode-underline-face
   bold face.
** DONE web-mode-variable-name-face
   Face for variable names.
** DONE web-mode-warning-face
   Face for warning.
** DONE web-mode-whitespace-face
   Face for whitespaces.

* TODO wgrep [0/5]
  Customize wgrep
** TODO wgrep-delete-face
   *Face used for the deleted whole line in the grep buffer.
** TODO wgrep-done-face
   *Face used for the line in the grep buffer that can be applied to a file.
** TODO wgrep-face
   *Face used for the changed text in the grep buffer.
** TODO wgrep-file-face
   *Face used for the changed text in the file buffer.
** TODO wgrep-reject-face
   *Face used for the line in the grep buffer that can not be applied to

* TODO wttrin [0/4]
  Emacs frontend for the weather web service wttr.in.
** TODO wttrin-instructions
   Face for the key-hint footer prose in the weather buffer.
** TODO wttrin-key
   Face for the bracketed key chords in the weather buffer footer.
** TODO wttrin-mode-line-stale
   Face for the mode-line weather emoji when its data is stale.
** TODO wttrin-staleness-header
   Face for the "Last updated: ..." line in the weather buffer.

* DONE yas [2/2]
  Faces for YASnippet template fields.
** DONE yas--field-debug-face
   The face used for debugging some overlays normally hidden
** DONE yas-field-highlight-face
   The face used to highlight the currently active field of a snippet