Linux Audio

Check our new training course

Loading...
  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
# Copyright (c) 2018 Jan Van Winkel <jan.van_winkel@dxplore.eu>
# Copyright (c) 2020 Teslabs Engineering S.L.
# SPDX-License-Identifier: Apache-2.0

menu "Themes"

choice
	prompt "Theme"
	default LVGL_USE_THEME_EMPTY

	config LVGL_USE_THEME_EMPTY
		bool "Empty theme"
		help
		  No theme, you can apply your styles as you need

	config LVGL_USE_THEME_MATERIAL
		bool "Material theme"
		help
		  Material theme, flat theme with bold colors and light shadow, support

	config LVGL_USE_THEME_MONO
		bool "Mono theme"
		help
		  Mono theme, monochrome, support

	config LVGL_USE_THEME_CUSTOM
		bool "Custom theme"
		help
		  Custom theme.
endchoice

if LVGL_USE_THEME_MATERIAL

choice
	prompt "Default material theme flags"
	default LVGL_THEME_MATERIAL_LIGHT

	config LVGL_THEME_MATERIAL_LIGHT
		bool "Light"

	config LVGL_THEME_MATERIAL_DARK
		bool "Dark"
endchoice

config LVGL_THEME_MATERIAL_FLAG_NO_TRANSITION
	bool "Disable transitions"
	help
	  Disable transitions in material theme

config LVGL_THEME_MATERIAL_FLAG_NO_FOCUS
	bool "Disable focus"
	help
	  Disable indication of focused state in material theme

endif # LVGL_USE_THEME_MATERIAL

if LVGL_USE_THEME_CUSTOM

config LVGL_THEME_CUSTOM_INIT_FUNCTION
	string "Custom theme initialization function"

endif # LVGL_USE_THEME_CUSTOM

choice
	prompt "Default theme primary color"
	default LVGL_THEME_DEFAULT_COLOR_PRIMARY_RED
	default LVGL_THEME_DEFAULT_COLOR_PRIMARY_BLACK if LVGL_USE_THEME_MONO

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_WHITE
		bool "White"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_SILVER
		bool "Silver"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_GRAY
		bool "Gray"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_BLACK
		bool "Black"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_RED
		bool "Red"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_MAROON
		bool "Maroon"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_YELLOW
		bool "Yellow"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_OLIVE
		bool "Olive"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_LIME
		bool "Lime"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_GREEN
		bool "Green"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_CYAN
		bool "Cyan"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_AQUA
		bool "Aqua"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_TEAL
		bool "Teal"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_BLUE
		bool "Blue"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_NAVY
		bool "Navy"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_MAGENTA
		bool "Magenta"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_PURPLE
		bool "Purple"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_ORANGE
		bool "Orange"

	config LVGL_THEME_DEFAULT_COLOR_PRIMARY_CUSTOM
		bool "Custom"
endchoice

if LVGL_THEME_DEFAULT_COLOR_PRIMARY_CUSTOM

config LVGL_THEME_DEFAULT_COLOR_PRIMARY_CUSTOM_RED
	hex "Custom primary color (red)"
	range 0x00 0xFF
	default 0x00
	help
	  Custom primary color RGB red channel

config LVGL_THEME_DEFAULT_COLOR_PRIMARY_CUSTOM_GREEN
	hex "Custom primary color (green)"
	range 0x00 0xFF
	default 0x00
	help
	  Custom primary color RGB green channel

config LVGL_THEME_DEFAULT_COLOR_PRIMARY_CUSTOM_BLUE
	hex "Custom primary color (blue)"
	range 0x00 0xFF
	default 0x00
	help
	  Custom primary color RGB blue channel

endif # LVGL_THEME_DEFAULT_COLOR_PRIMARY_CUSTOM

choice
	prompt "Default theme secondary color"
	default LVGL_THEME_DEFAULT_COLOR_SECONDARY_RED
	default LVGL_THEME_DEFAULT_COLOR_SECONDARY_BLACK if LVGL_USE_THEME_MONO

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_WHITE
		bool "White"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_SILVER
		bool "Silver"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_GRAY
		bool "Gray"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_BLACK
		bool "Black"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_RED
		bool "Red"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_MAROON
		bool "Maroon"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_YELLOW
		bool "Yellow"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_OLIVE
		bool "Olive"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_LIME
		bool "Lime"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_GREEN
		bool "Green"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_CYAN
		bool "Cyan"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_AQUA
		bool "Aqua"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_TEAL
		bool "Teal"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_BLUE
		bool "Blue"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_NAVY
		bool "Navy"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_MAGENTA
		bool "Magenta"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_PURPLE
		bool "Purple"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_ORANGE
		bool "Orange"

	config LVGL_THEME_DEFAULT_COLOR_SECONDARY_CUSTOM
		bool "Custom"
endchoice

if LVGL_THEME_DEFAULT_COLOR_SECONDARY_CUSTOM

config LVGL_THEME_DEFAULT_COLOR_SECONDARY_CUSTOM_RED
	hex "Custom secondary color (red)"
	range 0x00 0xFF
	default 0x00
	help
	  Custom secondary color RGB red channel

config LVGL_THEME_DEFAULT_COLOR_SECONDARY_CUSTOM_GREEN
	hex "Custom secondary color (green)"
	range 0x00 0xFF
	default 0x00
	help
	  Custom secondary color RGB green channel

config LVGL_THEME_DEFAULT_COLOR_SECONDARY_CUSTOM_BLUE
	hex "Custom secondary color (blue)"
	range 0x00 0xFF
	default 0x00
	help
	  Custom secondary color RGB blue channel

endif # LVGL_THEME_DEFAULT_COLOR_SECONDARY_CUSTOM

choice
	prompt "Default theme small font"
	default LVGL_THEME_DEFAULT_FONT_SMALL_UNSCII_8

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_8
		bool "Build-in font size 8"
		depends on LVGL_FONT_MONTSERRAT_8

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_10
		bool "Build-in font size 10"
		depends on LVGL_FONT_MONTSERRAT_10

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_12
		bool "Build-in font size 12"
		depends on LVGL_FONT_MONTSERRAT_12

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_14
		bool "Build-in font size 14"
		depends on LVGL_FONT_MONTSERRAT_14

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_16
		bool "Build-in font size 16"
		depends on LVGL_FONT_MONTSERRAT_16

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_18
		bool "Build-in font size 18"
		depends on LVGL_FONT_MONTSERRAT_18

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_20
		bool "Build-in font size 20"
		depends on LVGL_FONT_MONTSERRAT_20

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_22
		bool "Build-in font size 22"
		depends on LVGL_FONT_MONTSERRAT_22

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_24
		bool "Build-in font size 24"
		depends on LVGL_FONT_MONTSERRAT_24

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_26
		bool "Build-in font size 26"
		depends on LVGL_FONT_MONTSERRAT_26

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_28
		bool "Build-in font size 28"
		depends on LVGL_FONT_MONTSERRAT_28

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_30
		bool "Build-in font size 30"
		depends on LVGL_FONT_MONTSERRAT_30

		config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_32
		bool "Build-in font size 32"
		depends on LVGL_FONT_MONTSERRAT_32

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_34
		bool "Build-in font size 34"
		depends on LVGL_FONT_MONTSERRAT_34

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_36
		bool "Build-in font size 36"
		depends on LVGL_FONT_MONTSERRAT_36

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_38
		bool "Build-in font size 38"
		depends on LVGL_FONT_MONTSERRAT_38

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_40
		bool "Build-in font size 40"
		depends on LVGL_FONT_MONTSERRAT_40

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_42
		bool "Build-in font size 42"
		depends on LVGL_FONT_MONTSERRAT_42

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_44
		bool "Build-in font size 44"
		depends on LVGL_FONT_MONTSERRAT_44

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_46
		bool "Build-in font size 46"
		depends on LVGL_FONT_MONTSERRAT_46

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_48
		bool "Build-in font size 48"
		depends on LVGL_FONT_MONTSERRAT_48

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_12_SUBPX
		bool "Build-in font size 12 with sub-pixel rendering"
		depends on LVGL_FONT_MONTSERRAT_12_SUBPX

	config LVGL_THEME_DEFAULT_FONT_SMALL_MONTSERRAT_28_COMPRESSED
		bool "Build-in compressed font size 28"
		depends on LVGL_FONT_MONTSERRAT_28_COMPRESSED

	config LVGL_THEME_DEFAULT_FONT_SMALL_DEJAVU_16_PERSIAN_HEBREW
		bool "Build-in font size 16 with Hebrew, Arabic and Persian"
		depends on LVGL_FONT_DEJAVU_16_PERSIAN_HEBREW

	config LVGL_THEME_DEFAULT_FONT_SMALL_SIMSUN_16_CJK
		bool "Build-in font size 16 with CJK radicals"
		depends on LVGL_FONT_SIMSUN_16_CJK

	config LVGL_THEME_DEFAULT_FONT_SMALL_UNSCII_8
		bool "Build-in monospace font"
		depends on LVGL_FONT_UNSCII_8

	config LVGL_THEME_DEFAULT_FONT_SMALL_CUSTOM
		bool "Custom font"
		help
		  Use a none build-in font as default small font. A pointer named
		  lv_theme_default_small_font_custom_ptr should exists as a global
		  variable and point to a valid font structure

endchoice

choice
	prompt "Default theme normal font"
	default LVGL_THEME_DEFAULT_FONT_NORMAL_UNSCII_8

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_8
		bool "Build-in font size 8"
		depends on LVGL_FONT_MONTSERRAT_8

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_10
		bool "Build-in font size 10"
		depends on LVGL_FONT_MONTSERRAT_10

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_12
		bool "Build-in font size 12"
		depends on LVGL_FONT_MONTSERRAT_12

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_14
		bool "Build-in font size 14"
		depends on LVGL_FONT_MONTSERRAT_14

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_16
		bool "Build-in font size 16"
		depends on LVGL_FONT_MONTSERRAT_16

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_18
		bool "Build-in font size 18"
		depends on LVGL_FONT_MONTSERRAT_18

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_20
		bool "Build-in font size 20"
		depends on LVGL_FONT_MONTSERRAT_20

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_22
		bool "Build-in font size 22"
		depends on LVGL_FONT_MONTSERRAT_22

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_24
		bool "Build-in font size 24"
		depends on LVGL_FONT_MONTSERRAT_24

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_26
		bool "Build-in font size 26"
		depends on LVGL_FONT_MONTSERRAT_26

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_28
		bool "Build-in font size 28"
		depends on LVGL_FONT_MONTSERRAT_28

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_30
		bool "Build-in font size 30"
		depends on LVGL_FONT_MONTSERRAT_30

		config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_32
		bool "Build-in font size 32"
		depends on LVGL_FONT_MONTSERRAT_32

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_34
		bool "Build-in font size 34"
		depends on LVGL_FONT_MONTSERRAT_34

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_36
		bool "Build-in font size 36"
		depends on LVGL_FONT_MONTSERRAT_36

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_38
		bool "Build-in font size 38"
		depends on LVGL_FONT_MONTSERRAT_38

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_40
		bool "Build-in font size 40"
		depends on LVGL_FONT_MONTSERRAT_40

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_42
		bool "Build-in font size 42"
		depends on LVGL_FONT_MONTSERRAT_42

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_44
		bool "Build-in font size 44"
		depends on LVGL_FONT_MONTSERRAT_44

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_46
		bool "Build-in font size 46"
		depends on LVGL_FONT_MONTSERRAT_46

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_48
		bool "Build-in font size 48"
		depends on LVGL_FONT_MONTSERRAT_48

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_12_SUBPX
		bool "Build-in font size 12 with sub-pixel rendering"
		depends on LVGL_FONT_MONTSERRAT_12_SUBPX

	config LVGL_THEME_DEFAULT_FONT_NORMAL_MONTSERRAT_28_COMPRESSED
		bool "Build-in compressed font size 28"
		depends on LVGL_FONT_MONTSERRAT_28_COMPRESSED

	config LVGL_THEME_DEFAULT_FONT_NORMAL_DEJAVU_16_PERSIAN_HEBREW
		bool "Build-in font size 16 with Hebrew, Arabic and Persian"
		depends on LVGL_FONT_DEJAVU_16_PERSIAN_HEBREW

	config LVGL_THEME_DEFAULT_FONT_NORMAL_SIMSUN_16_CJK
		bool "Build-in font size 16 with CJK radicals"
		depends on LVGL_FONT_SIMSUN_16_CJK

	config LVGL_THEME_DEFAULT_FONT_NORMAL_UNSCII_8
		bool "Build-in monospace font"
		depends on LVGL_FONT_UNSCII_8

	config LVGL_THEME_DEFAULT_FONT_NORMAL_CUSTOM
		bool "Custom font"
		help
		  Use a none build-in font as default normal font. A pointer named
		  lv_theme_default_normal_font_custom_ptr should exists as a global
		  variable and point to a valid font structure

endchoice

choice
	prompt "Default theme subtitle font"
	default LVGL_THEME_DEFAULT_FONT_SUBTITLE_UNSCII_8

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_8
		bool "Build-in font size 8"
		depends on LVGL_FONT_MONTSERRAT_8

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_10
		bool "Build-in font size 10"
		depends on LVGL_FONT_MONTSERRAT_10

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_12
		bool "Build-in font size 12"
		depends on LVGL_FONT_MONTSERRAT_12

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_14
		bool "Build-in font size 14"
		depends on LVGL_FONT_MONTSERRAT_14

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_16
		bool "Build-in font size 16"
		depends on LVGL_FONT_MONTSERRAT_16

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_18
		bool "Build-in font size 18"
		depends on LVGL_FONT_MONTSERRAT_18

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_20
		bool "Build-in font size 20"
		depends on LVGL_FONT_MONTSERRAT_20

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_22
		bool "Build-in font size 22"
		depends on LVGL_FONT_MONTSERRAT_22

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_24
		bool "Build-in font size 24"
		depends on LVGL_FONT_MONTSERRAT_24

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_26
		bool "Build-in font size 26"
		depends on LVGL_FONT_MONTSERRAT_26

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_28
		bool "Build-in font size 28"
		depends on LVGL_FONT_MONTSERRAT_28

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_30
		bool "Build-in font size 30"
		depends on LVGL_FONT_MONTSERRAT_30

		config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_32
		bool "Build-in font size 32"
		depends on LVGL_FONT_MONTSERRAT_32

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_34
		bool "Build-in font size 34"
		depends on LVGL_FONT_MONTSERRAT_34

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_36
		bool "Build-in font size 36"
		depends on LVGL_FONT_MONTSERRAT_36

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_38
		bool "Build-in font size 38"
		depends on LVGL_FONT_MONTSERRAT_38

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_40
		bool "Build-in font size 40"
		depends on LVGL_FONT_MONTSERRAT_40

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_42
		bool "Build-in font size 42"
		depends on LVGL_FONT_MONTSERRAT_42

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_44
		bool "Build-in font size 44"
		depends on LVGL_FONT_MONTSERRAT_44

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_46
		bool "Build-in font size 46"
		depends on LVGL_FONT_MONTSERRAT_46

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_48
		bool "Build-in font size 48"
		depends on LVGL_FONT_MONTSERRAT_48

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_12_SUBPX
		bool "Build-in font size 12 with sub-pixel rendering"
		depends on LVGL_FONT_MONTSERRAT_12_SUBPX

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_MONTSERRAT_28_COMPRESSED
		bool "Build-in compressed font size 28"
		depends on LVGL_FONT_MONTSERRAT_28_COMPRESSED

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_DEJAVU_16_PERSIAN_HEBREW
		bool "Build-in font size 16 with Hebrew, Arabic and Persian"
		depends on LVGL_FONT_DEJAVU_16_PERSIAN_HEBREW

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_SIMSUN_16_CJK
		bool "Build-in font size 16 with CJK radicals"
		depends on LVGL_FONT_SIMSUN_16_CJK

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_UNSCII_8
		bool "Build-in monospace font"
		depends on LVGL_FONT_UNSCII_8

	config LVGL_THEME_DEFAULT_FONT_SUBTITLE_CUSTOM
		bool "Custom font"
		help
		  Use a none build-in font as default subtitle font. A pointer named
		  lv_theme_default_small_font_subtitle_ptr should exists as a global
		  variable and point to a valid font structure

endchoice

choice
	prompt "Default theme title font"
	default LVGL_THEME_DEFAULT_FONT_TITLE_UNSCII_8

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_8
		bool "Build-in font size 8"
		depends on LVGL_FONT_MONTSERRAT_8

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_10
		bool "Build-in font size 10"
		depends on LVGL_FONT_MONTSERRAT_10

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_12
		bool "Build-in font size 12"
		depends on LVGL_FONT_MONTSERRAT_12

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_14
		bool "Build-in font size 14"
		depends on LVGL_FONT_MONTSERRAT_14

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_16
		bool "Build-in font size 16"
		depends on LVGL_FONT_MONTSERRAT_16

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_18
		bool "Build-in font size 18"
		depends on LVGL_FONT_MONTSERRAT_18

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_20
		bool "Build-in font size 20"
		depends on LVGL_FONT_MONTSERRAT_20

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_22
		bool "Build-in font size 22"
		depends on LVGL_FONT_MONTSERRAT_22

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_24
		bool "Build-in font size 24"
		depends on LVGL_FONT_MONTSERRAT_24

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_26
		bool "Build-in font size 26"
		depends on LVGL_FONT_MONTSERRAT_26

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_28
		bool "Build-in font size 28"
		depends on LVGL_FONT_MONTSERRAT_28

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_30
		bool "Build-in font size 30"
		depends on LVGL_FONT_MONTSERRAT_30

		config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_32
		bool "Build-in font size 32"
		depends on LVGL_FONT_MONTSERRAT_32

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_34
		bool "Build-in font size 34"
		depends on LVGL_FONT_MONTSERRAT_34

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_36
		bool "Build-in font size 36"
		depends on LVGL_FONT_MONTSERRAT_36

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_38
		bool "Build-in font size 38"
		depends on LVGL_FONT_MONTSERRAT_38

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_40
		bool "Build-in font size 40"
		depends on LVGL_FONT_MONTSERRAT_40

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_42
		bool "Build-in font size 42"
		depends on LVGL_FONT_MONTSERRAT_42

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_44
		bool "Build-in font size 44"
		depends on LVGL_FONT_MONTSERRAT_44

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_46
		bool "Build-in font size 46"
		depends on LVGL_FONT_MONTSERRAT_46

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_48
		bool "Build-in font size 48"
		depends on LVGL_FONT_MONTSERRAT_48

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_12_SUBPX
		bool "Build-in font size 12 with sub-pixel rendering"
		depends on LVGL_FONT_MONTSERRAT_12_SUBPX

	config LVGL_THEME_DEFAULT_FONT_TITLE_MONTSERRAT_28_COMPRESSED
		bool "Build-in compressed font size 28"
		depends on LVGL_FONT_MONTSERRAT_28_COMPRESSED

	config LVGL_THEME_DEFAULT_FONT_TITLE_DEJAVU_16_PERSIAN_HEBREW
		bool "Build-in font size 16 with Hebrew, Arabic and Persian"
		depends on LVGL_FONT_DEJAVU_16_PERSIAN_HEBREW

	config LVGL_THEME_DEFAULT_FONT_TITLE_SIMSUN_16_CJK
		bool "Build-in font size 16 with CJK radicals"
		depends on LVGL_FONT_SIMSUN_16_CJK

	config LVGL_THEME_DEFAULT_FONT_TITLE_UNSCII_8
		bool "Build-in monospace font"
		depends on LVGL_FONT_UNSCII_8

	config LVGL_THEME_DEFAULT_FONT_TITLE_CUSTOM
		bool "Custom font"
		help
		  Use a none build-in font as default title font. A pointer named
		  lv_theme_default_small_font_title_ptr should exists as a global
		  variable and point to a valid font structure

endchoice

endmenu