summaryrefslogtreecommitdiff
path: root/src/libs/lvgl/src/lv_themes/lv_theme_nemo.c
blob: 564c232bca2c91790c990641a17ae8f7708bb96a (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
/**
 * @file lv_theme_nemo.c
 *
 */

/*********************
 *      INCLUDES
 *********************/
#include "lv_theme.h"

#if LV_USE_THEME_NEMO

/*********************
 *      DEFINES
 *********************/

/**********************
 *      TYPEDEFS
 **********************/

/**********************
 *  STATIC PROTOTYPES
 **********************/

/**********************
 *  STATIC VARIABLES
 **********************/

static uint16_t _hue;
static lv_font_t * _font;
static lv_font_t * _font;
static lv_font_t * _font;

static lv_theme_t theme;
static lv_style_t def;
static lv_style_t bg;
static lv_style_t scr;
static lv_style_t panel; /*General fancy background (e.g. to chart or ta)*/
static lv_style_t sb;
static lv_style_t btn_rel, btn_pr, btn_trel, btn_tpr, btn_ina;

#if LV_USE_BAR
static lv_style_t bar_bg, bar_indic;
#endif

#if LV_USE_SLIDER
static lv_style_t slider_knob;
#endif

#if LV_USE_LMETER
static lv_style_t lmeter_bg;
#endif

#if LV_USE_DDLIST
static lv_style_t ddlist_bg, ddlist_sel;
#endif

#if LV_USE_BTNM
static lv_style_t btnm_bg, btnm_rel, btnm_pr, btnm_trel, btnm_ina;
#endif

/**********************
 *      MACROS
 **********************/

/**********************
 *   STATIC FUNCTIONS
 **********************/

static void basic_init(void)
{
    /*Default*/
    lv_style_copy(&def, &lv_style_plain);
    def.body.opa = LV_OPA_COVER;
    def.glass    = 0;

    def.body.main_color     = lv_color_hex3(0x222);
    def.body.grad_color     = lv_color_hex3(0x222);
    def.body.radius         = 0;
    def.body.padding.left   = LV_DPI / 8;
    def.body.padding.right  = LV_DPI / 8;
    def.body.padding.top    = LV_DPI / 8;
    def.body.padding.bottom = LV_DPI / 8;
    def.body.padding.inner  = LV_DPI / 8;
    def.body.border.color   = LV_COLOR_SILVER;
    def.body.border.width   = 1;
    def.body.border.opa     = LV_OPA_COVER;
    def.body.shadow.color   = LV_COLOR_SILVER;
    def.body.shadow.width   = 0;
    def.body.shadow.type    = LV_SHADOW_FULL;

    def.text.color        = lv_color_hex3(0xDDD);
    def.text.font         = _font;
    def.text.letter_space = 1;
    def.text.line_space   = 2;

    def.image.color   = lv_color_hex3(0xDDD);
    def.image.intense = LV_OPA_TRANSP;

    def.line.color = lv_color_hex3(0xDDD);
    def.line.width = 1;

    /*Background*/
    lv_style_copy(&bg, &def);
    bg.body.main_color   = lv_color_hex3(0x005);
    bg.body.grad_color   = lv_color_hex3(0x045);
    bg.body.border.width = 2;
    bg.body.border.color = lv_color_hex3(0x666);
    bg.body.shadow.color = LV_COLOR_SILVER;

    lv_style_copy(&scr, &bg);
    scr.body.padding.bottom = 0;
    scr.body.padding.top    = 0;
    scr.body.padding.left   = 0;
    scr.body.padding.right  = 0;

    /*Panel*/
    lv_style_copy(&panel, &def);
    panel.body.radius       = LV_DPI / 10;
    panel.body.main_color   = lv_color_hex3(0x500);
    panel.body.grad_color   = lv_color_hex3(0x505);
    panel.body.border.color = lv_color_hex3(0xccc);
    panel.body.border.width = 2;
    panel.body.border.opa   = LV_OPA_60;
    panel.text.color        = lv_color_hsv_to_rgb(_hue, 8, 96);
    panel.line.color        = lv_color_hsv_to_rgb(_hue, 20, 70);

    /*Scrollbar*/
    lv_style_copy(&sb, &def);
    sb.body.opa            = LV_OPA_50;
    sb.body.radius         = LV_RADIUS_CIRCLE;
    sb.body.border.color   = LV_COLOR_SILVER;
    sb.body.border.opa     = LV_OPA_40;
    sb.body.border.width   = 1;
    sb.body.main_color     = lv_color_hsv_to_rgb(_hue, 33, 92);
    sb.body.grad_color     = lv_color_hsv_to_rgb(_hue, 33, 92);
    sb.body.padding.left   = 1;
    sb.body.padding.right  = 1;
    sb.body.padding.top    = 1;
    sb.body.padding.bottom = 1;
    sb.body.padding.inner  = LV_DPI / 15; /*Scrollbar width*/

    theme.style.bg    = &bg;
    theme.style.scr   = &scr;
    theme.style.panel = &panel;
}

static void btn_init(void)
{
#if LV_USE_BTN != 0
    lv_style_copy(&btn_rel, &def);
    btn_rel.glass               = 0;
    btn_rel.body.opa            = LV_OPA_TRANSP;
    btn_rel.body.radius         = LV_RADIUS_CIRCLE;
    btn_rel.body.border.width   = 2;
    btn_rel.body.border.color   = lv_color_hsv_to_rgb(_hue, 70, 90);
    btn_rel.body.border.opa     = LV_OPA_80;
    btn_rel.body.padding.left   = LV_DPI / 4;
    btn_rel.body.padding.right  = LV_DPI / 4;
    btn_rel.body.padding.top    = LV_DPI / 6;
    btn_rel.body.padding.bottom = LV_DPI / 6;
    btn_rel.body.padding.inner  = LV_DPI / 10;
    btn_rel.text.color          = lv_color_hsv_to_rgb(_hue, 8, 96);
    btn_rel.text.font           = _font;

    lv_style_copy(&btn_pr, &btn_rel);
    btn_pr.body.opa        = LV_OPA_COVER;
    btn_pr.body.main_color = lv_color_hsv_to_rgb(_hue, 50, 50);
    btn_pr.body.grad_color = lv_color_hsv_to_rgb(_hue, 50, 50);
    btn_pr.body.border.opa = LV_OPA_60;
    btn_pr.text.font       = _font;
    btn_pr.text.color      = lv_color_hsv_to_rgb(_hue, 10, 100);

    lv_style_copy(&btn_trel, &btn_pr);
    btn_trel.body.opa          = LV_OPA_COVER;
    btn_trel.body.main_color   = lv_color_hsv_to_rgb(_hue, 50, 60);
    btn_trel.body.grad_color   = lv_color_hsv_to_rgb(_hue, 50, 60);
    btn_trel.body.border.opa   = LV_OPA_60;
    btn_trel.body.border.color = lv_color_hsv_to_rgb(_hue, 80, 90);
    btn_trel.text.font         = _font;
    btn_trel.text.color        = lv_color_hsv_to_rgb(_hue, 0, 100);

    lv_style_copy(&btn_tpr, &btn_trel);
    btn_tpr.body.opa          = LV_OPA_COVER;
    btn_tpr.body.main_color   = lv_color_hsv_to_rgb(_hue, 50, 50);
    btn_tpr.body.grad_color   = lv_color_hsv_to_rgb(_hue, 50, 50);
    btn_tpr.body.border.opa   = LV_OPA_60;
    btn_tpr.body.border.color = lv_color_hsv_to_rgb(_hue, 80, 70);
    btn_tpr.text.font         = _font;
    btn_tpr.text.color        = lv_color_hsv_to_rgb(_hue, 10, 90);

    lv_style_copy(&btn_ina, &btn_rel);
    btn_ina.body.border.opa   = LV_OPA_60;
    btn_ina.body.border.color = lv_color_hsv_to_rgb(_hue, 10, 50);
    btn_ina.text.font         = _font;
    btn_ina.text.color        = lv_color_hsv_to_rgb(_hue, 10, 90);

    theme.style.btn.rel     = &btn_rel;
    theme.style.btn.pr      = &btn_pr;
    theme.style.btn.tgl_rel = &btn_trel;
    theme.style.btn.tgl_pr  = &btn_tpr;
    theme.style.btn.ina     = &btn_ina;
#endif
}

static void label_init(void)
{
#if LV_USE_LABEL != 0
    static lv_style_t label_prim, label_sec, label_hint;

    lv_style_copy(&label_prim, &def);
    label_prim.text.font  = _font;
    label_prim.text.color = lv_color_hsv_to_rgb(_hue, 5, 96);

    lv_style_copy(&label_sec, &label_prim);
    label_sec.text.color = lv_color_hsv_to_rgb(_hue, 40, 85);

    lv_style_copy(&label_hint, &label_prim);
    label_hint.text.color = lv_color_hsv_to_rgb(_hue, 20, 70);

    theme.style.label.prim = &label_prim;
    theme.style.label.sec  = &label_sec;
    theme.style.label.hint = &label_hint;
#endif
}

static void bar_init(void)
{
#if LV_USE_BAR
    lv_style_copy(&bar_bg, &def);
    bar_bg.body.opa            = LV_OPA_30;
    bar_bg.body.radius         = LV_RADIUS_CIRCLE;
    bar_bg.body.main_color     = LV_COLOR_WHITE;
    bar_bg.body.grad_color     = LV_COLOR_SILVER;
    bar_bg.body.border.width   = 2;
    bar_bg.body.border.color   = LV_COLOR_SILVER;
    bar_bg.body.border.opa     = LV_OPA_20;
    bar_bg.body.padding.left   = 0;
    bar_bg.body.padding.right  = 0;
    bar_bg.body.padding.top    = LV_DPI / 10;
    bar_bg.body.padding.bottom = LV_DPI / 10;
    bar_bg.body.padding.inner  = 0;

    lv_style_copy(&bar_indic, &def);
    bar_indic.body.radius         = LV_RADIUS_CIRCLE;
    bar_indic.body.border.width   = 2;
    bar_indic.body.border.color   = LV_COLOR_SILVER;
    bar_indic.body.border.opa     = LV_OPA_70;
    bar_indic.body.padding.left   = 0;
    bar_indic.body.padding.right  = 0;
    bar_indic.body.padding.top    = 0;
    bar_indic.body.padding.bottom = 0;
    bar_indic.body.shadow.width   = LV_DPI / 20;
    bar_indic.body.shadow.color   = lv_color_hsv_to_rgb(_hue, 20, 90);
    bar_indic.body.main_color     = lv_color_hsv_to_rgb(_hue, 40, 80);
    bar_indic.body.grad_color     = lv_color_hsv_to_rgb(_hue, 40, 80);

    theme.style.bar.bg    = &bar_bg;
    theme.style.bar.indic = &bar_indic;
#endif
}

static void img_init(void)
{
#if LV_USE_IMG != 0
    static lv_style_t img_light, img_dark;
    lv_style_copy(&img_light, &def);
    img_light.image.color   = lv_color_hsv_to_rgb(_hue, 15, 85);
    img_light.image.intense = LV_OPA_80;

    lv_style_copy(&img_dark, &def);
    img_light.image.color   = lv_color_hsv_to_rgb(_hue, 85, 65);
    img_light.image.intense = LV_OPA_80;

    theme.style.img.light = &img_light;
    theme.style.img.dark  = &img_dark;
#endif
}

static void line_init(void)
{
#if LV_USE_LINE != 0
    static lv_style_t line_decor;
    lv_style_copy(&line_decor, &def);
    line_decor.line.color = lv_color_hsv_to_rgb(_hue, 50, 50);
    line_decor.line.width = 1;

    theme.style.line.decor = &line_decor;
#endif
}

static void led_init(void)
{
#if LV_USE_LED != 0
    static lv_style_t led;
    lv_style_copy(&led, &lv_style_pretty_color);
    led.body.shadow.width = LV_DPI / 10;
    led.body.radius       = LV_RADIUS_CIRCLE;
    led.body.border.width = LV_DPI / 30;
    led.body.border.opa   = LV_OPA_30;
    led.body.main_color   = lv_color_hsv_to_rgb(_hue, 100, 100);
    led.body.grad_color   = lv_color_hsv_to_rgb(_hue, 100, 40);
    led.body.border.color = lv_color_hsv_to_rgb(_hue, 60, 60);
    led.body.shadow.color = lv_color_hsv_to_rgb(_hue, 100, 100);

    theme.style.led = &led;
#endif
}

static void slider_init(void)
{
#if LV_USE_SLIDER != 0
    lv_style_copy(&slider_knob, &def);
    slider_knob.body.opa          = LV_OPA_60;
    slider_knob.body.radius       = LV_RADIUS_CIRCLE;
    slider_knob.body.main_color   = LV_COLOR_PURPLE;
    slider_knob.body.grad_color   = LV_COLOR_SILVER;
    slider_knob.body.border.width = 2;
    slider_knob.body.border.color = LV_COLOR_ORANGE;
    slider_knob.body.border.opa   = LV_OPA_50;

    theme.style.slider.bg    = &bar_bg;
    theme.style.slider.indic = &bar_indic;
    theme.style.slider.knob  = &slider_knob;
#endif
}

static void sw_init(void)
{
#if LV_USE_SW != 0
    static lv_style_t sw_bg, sw_indic, sw_knob;
    lv_style_copy(&sw_bg, &bar_bg);
    sw_bg.body.opa            = LV_OPA_COVER;
    sw_bg.body.padding.left   = -2;
    sw_bg.body.padding.right  = -2;
    sw_bg.body.padding.top    = -2;
    sw_bg.body.padding.bottom = -2;
    sw_bg.body.main_color     = lv_color_hex3(0x666);
    sw_bg.body.grad_color     = lv_color_hex3(0x999);
    sw_bg.body.border.width   = 2;
    sw_bg.body.border.opa     = LV_OPA_50;

    lv_style_copy(&sw_indic, &bar_indic);
    sw_indic.body.shadow.width   = LV_DPI / 20;
    sw_indic.body.padding.left   = 0;
    sw_indic.body.padding.right  = 0;
    sw_indic.body.padding.top    = 0;
    sw_indic.body.padding.bottom = 0;

    lv_style_copy(&sw_knob, &slider_knob);
    sw_knob.body.opa = LV_OPA_80;

    theme.style.sw.bg       = &sw_bg;
    theme.style.sw.indic    = &sw_indic;
    theme.style.sw.knob_off = &sw_knob;
    theme.style.sw.knob_on  = &sw_knob;
#endif
}

static void lmeter_init(void)
{
#if LV_USE_LMETER != 0
    lv_style_copy(&lmeter_bg, &def);
    lmeter_bg.body.main_color   = lv_color_hsv_to_rgb(_hue, 10, 70);
    lmeter_bg.body.grad_color   = lv_color_hsv_to_rgb(_hue, 80, 80);
    lmeter_bg.body.padding.left = LV_DPI / 8; /*Scale line length*/
    lmeter_bg.line.color        = lv_color_hex3(0x500);
    lmeter_bg.line.width        = 2;

    theme.style.lmeter = &lmeter_bg;

#endif
}

static void gauge_init(void)
{
#if LV_USE_GAUGE != 0
    static lv_style_t gauge_bg;
    lv_style_copy(&gauge_bg, &def);
    gauge_bg.body.main_color     = lv_color_hsv_to_rgb(_hue, 20, 100);
    gauge_bg.body.grad_color     = gauge_bg.body.main_color;
    gauge_bg.body.padding.left   = LV_DPI / 16; /*Scale line length*/
    gauge_bg.body.padding.right  = LV_DPI / 16; /*Scale line length*/
    gauge_bg.body.padding.top    = LV_DPI / 20; /*Needle center size*/
    gauge_bg.body.padding.bottom = LV_DPI / 20; /*Needle center size*/
    gauge_bg.body.padding.inner  = LV_DPI / 12; /*Label - scale distance*/
    gauge_bg.body.border.color   = lv_color_hex3(0x500);
    gauge_bg.line.color          = lv_color_hsv_to_rgb(_hue, 80, 75);
    gauge_bg.line.width          = 2;
    gauge_bg.text.color          = lv_color_hsv_to_rgb(_hue, 10, 90);
    gauge_bg.text.font           = _font;

    theme.style.gauge = &gauge_bg;
#endif
}

static void arc_init(void)
{
#if LV_USE_ARC != 0

    static lv_style_t arc;
    lv_style_copy(&arc, &def);
    arc.line.width   = 10;
    arc.line.color   = lv_color_hsv_to_rgb(_hue, 70, 90);
    arc.line.rounded = 1;

    /*For preloader*/
    arc.body.border.width = 0;

    theme.style.arc = &arc;
#endif
}

static void preload_init(void)
{
#if LV_USE_PRELOAD != 0

    theme.style.preload = theme.style.arc;
#endif
}

static void chart_init(void)
{
#if LV_USE_CHART
    theme.style.chart = &panel;
#endif
}

static void calendar_init(void)
{
#if LV_USE_CALENDAR != 0
    static lv_style_t ina_days;
    lv_style_copy(&ina_days, &def);
    ina_days.text.color = lv_color_hsv_to_rgb(_hue, 0, 50);

    static lv_style_t high_days;
    lv_style_copy(&high_days, &def);
    high_days.text.color = lv_color_hsv_to_rgb(_hue, 50, 90);

    static lv_style_t week_box;
    lv_style_copy(&week_box, &def);
    week_box.body.opa            = LV_OPA_TRANSP;
    week_box.body.border.color   = theme.style.panel->body.border.color;
    week_box.body.padding.top    = LV_DPI / 20;
    week_box.body.padding.bottom = LV_DPI / 20;

    static lv_style_t today_box;
    lv_style_copy(&today_box, &def);
    today_box.body.main_color     = LV_COLOR_WHITE;
    today_box.body.grad_color     = LV_COLOR_WHITE;
    today_box.body.padding.top    = LV_DPI / 20;
    today_box.body.padding.bottom = LV_DPI / 20;
    today_box.body.radius         = 0;

    theme.style.calendar.bg               = theme.style.panel;
    theme.style.calendar.header           = theme.style.label.prim;
    theme.style.calendar.inactive_days    = theme.style.label.hint;
    theme.style.calendar.highlighted_days = theme.style.label.sec;
    theme.style.calendar.week_box         = &week_box;
    theme.style.calendar.today_box        = &week_box;
    theme.style.calendar.header_pr        = theme.style.label.prim;
#endif
}

static void cb_init(void)
{
#if LV_USE_CB != 0
    static lv_style_t cb_bg, cb_rel, cb_pr, cb_trel, cb_tpr, cb_ina;
    lv_style_copy(&cb_rel, &bg);
    cb_rel.body.radius       = LV_DPI / 20;
    cb_rel.body.border.width = 1;
    cb_rel.body.border.color = LV_COLOR_ORANGE;
    cb_rel.body.main_color   = LV_COLOR_PURPLE;
    cb_rel.body.grad_color   = LV_COLOR_SILVER;

    lv_style_copy(&cb_bg, &bg);
    cb_bg.body.opa            = LV_OPA_TRANSP;
    cb_bg.body.border.width   = 0;
    cb_bg.body.padding.inner  = LV_DPI / 8;
    cb_bg.body.padding.left   = 0;
    cb_bg.body.padding.right  = 0;
    cb_bg.body.padding.top    = 0;
    cb_bg.body.padding.bottom = 0;
    cb_bg.text.font           = _font;

    lv_style_copy(&cb_pr, &cb_rel);
    cb_pr.body.main_color = lv_color_hsv_to_rgb(_hue, 10, 90);
    cb_pr.body.main_color = lv_color_hsv_to_rgb(_hue, 10, 82);

    lv_style_copy(&cb_trel, &cb_rel);
    cb_trel.body.border.width = 4;
    cb_trel.body.border.color = LV_COLOR_WHITE;
    cb_trel.body.border.opa   = LV_OPA_60;
    cb_trel.body.main_color   = lv_color_hsv_to_rgb(_hue, 50, 82);
    cb_trel.body.grad_color   = lv_color_hsv_to_rgb(_hue, 50, 62);

    lv_style_copy(&cb_tpr, &cb_trel);
    cb_tpr.body.border.color = LV_COLOR_SILVER;
    cb_tpr.body.border.opa   = LV_OPA_70;
    cb_tpr.body.main_color   = lv_color_hsv_to_rgb(_hue, 50, 72);
    cb_tpr.body.grad_color   = lv_color_hsv_to_rgb(_hue, 50, 52);

    lv_style_copy(&cb_ina, &cb_trel);
    cb_ina.body.border.width = 1;
    cb_ina.body.border.color = LV_COLOR_GRAY;
    cb_ina.body.main_color   = LV_COLOR_PURPLE;
    cb_ina.body.grad_color   = LV_COLOR_SILVER;

    theme.style.cb.bg          = &cb_bg;
    theme.style.cb.box.rel     = &cb_rel;
    theme.style.cb.box.pr      = &cb_pr;
    theme.style.cb.box.tgl_rel = &cb_trel;
    theme.style.cb.box.tgl_pr  = &cb_tpr;
    theme.style.cb.box.ina     = &cb_ina;
#endif
}

static void btnm_init(void)
{
#if LV_USE_BTNM
    lv_style_copy(&btnm_bg, &lv_style_transp_tight);
    btnm_bg.body.border.width = 1;
    btnm_bg.body.border.color = lv_color_hsv_to_rgb(_hue, 60, 80);
    btnm_bg.body.border.opa   = LV_OPA_COVER;
    btnm_bg.body.radius       = LV_DPI / 8;

    lv_style_copy(&btnm_rel, &lv_style_plain);
    btnm_rel.body.opa    = LV_OPA_TRANSP;
    btnm_rel.body.radius = LV_DPI / 8;
    btnm_rel.text.color  = lv_color_hsv_to_rgb(_hue, 60, 80);
    btnm_rel.text.font   = _font;

    lv_style_copy(&btnm_pr, &lv_style_plain);
    btnm_pr.body.main_color = lv_color_hsv_to_rgb(_hue, 40, 70);
    btnm_pr.body.grad_color = lv_color_hsv_to_rgb(_hue, 40, 70);
    btnm_pr.body.radius     = LV_DPI / 8;
    btnm_pr.text.color      = lv_color_hsv_to_rgb(_hue, 40, 40);
    btnm_pr.text.font       = _font;

    lv_style_copy(&btnm_trel, &btnm_rel);
    btnm_trel.body.border.color = lv_color_hsv_to_rgb(_hue, 80, 80);
    btnm_trel.body.border.width = 3;

    lv_style_copy(&btnm_ina, &btnm_rel);
    btnm_ina.text.color = lv_color_hsv_to_rgb(_hue, 10, 60);

    theme.style.btnm.bg          = &btnm_bg;
    theme.style.btnm.btn.rel     = &btnm_rel;
    theme.style.btnm.btn.pr      = &btnm_pr;
    theme.style.btnm.btn.tgl_rel = &btnm_trel;
    theme.style.btnm.btn.tgl_pr  = &btnm_pr;
    theme.style.btnm.btn.ina     = &btnm_ina;
#endif
}

static void kb_init(void)
{
#if LV_USE_KB
    theme.style.kb.bg          = &btnm_bg;
    theme.style.kb.btn.rel     = &btnm_rel;
    theme.style.kb.btn.pr      = &btnm_pr;
    theme.style.kb.btn.tgl_rel = &btnm_trel;
    theme.style.kb.btn.tgl_pr  = &btnm_pr;
    theme.style.kb.btn.ina     = &btnm_ina;
#endif
}

static void mbox_init(void)
{
#if LV_USE_MBOX
    static lv_style_t mbox_bg;
    lv_style_copy(&mbox_bg, &panel);
    mbox_bg.body.shadow.width = LV_DPI / 12;

    theme.style.mbox.bg      = &mbox_bg;
    theme.style.mbox.btn.bg  = &lv_style_transp;
    theme.style.mbox.btn.rel = &btn_trel;
    theme.style.mbox.btn.pr  = &btn_tpr;
#endif
}

static void page_init(void)
{
#if LV_USE_PAGE
    theme.style.page.bg   = &panel;
    theme.style.page.scrl = &lv_style_transp_fit;
    theme.style.page.sb   = &sb;
#endif
}

static void ta_init(void)
{
#if LV_USE_TA
    theme.style.ta.area    = &panel;
    theme.style.ta.oneline = &panel;
    theme.style.ta.cursor  = NULL;
    theme.style.ta.sb      = &sb;
#endif
}

static void spinbox_init(void)
{
#if LV_USE_SPINBOX
    theme.style.spinbox.bg     = &panel;
    theme.style.spinbox.cursor = theme.style.ta.cursor;
    theme.style.spinbox.sb     = theme.style.ta.sb;
#endif
}

static void list_init(void)
{
#if LV_USE_LIST != 0
    static lv_style_t list_bg, list_rel, list_pr, list_trel, list_tpr, list_ina;
    lv_style_copy(&list_rel, &def);
    list_rel.body.opa          = LV_OPA_TRANSP;
    list_rel.body.border.width = 1;
    list_rel.body.border.color = lv_color_hsv_to_rgb(_hue, 50, 85);
    list_rel.body.border.opa   = LV_OPA_COVER;
    list_rel.text.color        = lv_color_hsv_to_rgb(_hue, 10, 94);
    list_rel.text.font         = _font;

    lv_style_copy(&list_pr, &list_rel);
    list_pr.body.opa        = LV_OPA_COVER;
    list_pr.body.main_color = lv_color_hsv_to_rgb(_hue, 34, 41);
    list_pr.body.grad_color = lv_color_hsv_to_rgb(_hue, 34, 41);
    list_pr.text.color      = lv_color_hsv_to_rgb(_hue, 7, 96);

    lv_style_copy(&list_trel, &list_rel);
    lv_style_copy(&list_tpr, &list_pr);
    lv_style_copy(&list_ina, &def);

    lv_style_copy(&list_bg, &list_rel);
    list_bg.body.padding.left   = 0;
    list_bg.body.padding.right  = 0;
    list_bg.body.padding.top    = 0;
    list_bg.body.padding.bottom = 0;

    theme.style.list.sb          = &sb;
    theme.style.list.bg          = &list_bg;
    theme.style.list.scrl        = &lv_style_transp_tight;
    theme.style.list.btn.rel     = &list_rel;
    theme.style.list.btn.pr      = &list_pr;
    theme.style.list.btn.tgl_rel = &list_trel;
    theme.style.list.btn.tgl_pr  = &list_tpr;
    theme.style.list.btn.ina     = &list_ina;
#endif
}

static void ddlist_init(void)
{
#if LV_USE_DDLIST != 0
    lv_style_copy(&ddlist_bg, &panel);
    ddlist_bg.text.line_space     = LV_DPI / 8;
    ddlist_bg.body.padding.left   = LV_DPI / 6;
    ddlist_bg.body.padding.right  = LV_DPI / 6;
    ddlist_bg.body.padding.top    = LV_DPI / 6;
    ddlist_bg.body.padding.bottom = LV_DPI / 6;

    lv_style_copy(&ddlist_sel, &panel);
    ddlist_sel.body.main_color = lv_color_hsv_to_rgb(_hue, 45, 70);
    ddlist_sel.body.grad_color = lv_color_hsv_to_rgb(_hue, 45, 70);
    ddlist_sel.body.opa        = LV_OPA_COVER;
    ddlist_sel.body.radius     = 0;

    theme.style.ddlist.bg  = &ddlist_bg;
    theme.style.ddlist.sel = &ddlist_sel;
    theme.style.ddlist.sb  = &sb;
#endif
}

static void roller_init(void)
{
#if LV_USE_ROLLER != 0
    static lv_style_t roller_bg, roller_sel;
    lv_style_copy(&roller_bg, &ddlist_bg);
    roller_bg.text.line_space   = LV_DPI / 6;
    roller_bg.body.radius       = LV_DPI / 20;
    roller_bg.body.main_color   = lv_color_hex3(0x500);
    roller_bg.body.grad_color   = lv_color_hex3(0x005);
    roller_bg.body.border.opa   = LV_OPA_30;
    roller_bg.text.opa          = LV_OPA_70;
    roller_bg.text.color        = lv_color_hsv_to_rgb(_hue, 20, 70);
    roller_bg.body.shadow.width = 0;

    lv_style_copy(&roller_sel, &panel);
    roller_sel.body.opa    = LV_OPA_TRANSP;
    roller_sel.body.radius = 0;
    roller_sel.text.opa    = LV_OPA_COVER;
    roller_sel.text.color  = lv_color_hsv_to_rgb(_hue, 70, 95);

    theme.style.roller.bg  = &roller_bg;
    theme.style.roller.sel = &roller_sel;
#endif
}

static void tabview_init(void)
{
#if LV_USE_TABVIEW != 0
    static lv_style_t tab_rel, tab_pr, tab_trel, tab_tpr, tab_indic;
    lv_style_copy(&tab_rel, &def);
    tab_rel.body.main_color     = lv_color_hex3(0x500);
    tab_rel.body.grad_color     = lv_color_hex3(0x005);
    tab_rel.body.padding.left   = 0;
    tab_rel.body.padding.right  = 0;
    tab_rel.body.padding.top    = LV_DPI / 6;
    tab_rel.body.padding.bottom = LV_DPI / 6;
    tab_rel.body.padding.inner  = 0;
    tab_rel.body.border.width   = 1;
    tab_rel.body.border.color   = LV_COLOR_SILVER;
    tab_rel.body.border.opa     = LV_OPA_40;
    tab_rel.text.color          = lv_color_hex3(0xDDD);
    tab_rel.text.font           = _font;

    lv_style_copy(&tab_pr, &tab_rel);
    tab_pr.body.main_color = lv_color_hex3(0x005);
    tab_pr.body.grad_color = lv_color_hex3(0x500);

    lv_style_copy(&tab_trel, &def);
    tab_trel.body.opa            = LV_OPA_TRANSP;
    tab_trel.body.padding.left   = 0;
    tab_trel.body.padding.right  = 0;
    tab_trel.body.padding.top    = LV_DPI / 6;
    tab_trel.body.padding.bottom = LV_DPI / 6;
    tab_trel.body.padding.inner  = 0;
    tab_trel.body.border.width   = 1;
    tab_trel.body.border.color   = LV_COLOR_SILVER;
    tab_trel.body.border.opa     = LV_OPA_40;
    tab_trel.text.color          = lv_color_hsv_to_rgb(_hue, 10, 94);
    tab_trel.text.font           = _font;

    lv_style_copy(&tab_tpr, &def);
    tab_tpr.body.main_color     = LV_COLOR_GRAY;
    tab_tpr.body.grad_color     = LV_COLOR_GRAY;
    tab_tpr.body.padding.left   = 0;
    tab_tpr.body.padding.right  = 0;
    tab_tpr.body.padding.top    = LV_DPI / 6;
    tab_tpr.body.padding.bottom = LV_DPI / 6;
    tab_tpr.body.padding.inner  = 0;
    tab_tpr.body.border.width   = 1;
    tab_tpr.body.border.color   = LV_COLOR_SILVER;
    tab_tpr.body.border.opa     = LV_OPA_40;
    tab_tpr.text.color          = lv_color_hsv_to_rgb(_hue, 10, 94);
    tab_tpr.text.font           = _font;

    lv_style_copy(&tab_indic, &def);
    tab_indic.body.border.width  = 0;
    tab_indic.body.main_color    = lv_color_hsv_to_rgb(_hue, 80, 87);
    tab_indic.body.grad_color    = lv_color_hsv_to_rgb(_hue, 80, 87);
    tab_indic.body.padding.inner = LV_DPI / 10; /*Indicator height*/

    theme.style.tabview.bg          = &bg;
    theme.style.tabview.indic       = &tab_indic;
    theme.style.tabview.btn.bg      = &lv_style_transp_tight;
    theme.style.tabview.btn.rel     = &tab_rel;
    theme.style.tabview.btn.pr      = &tab_pr;
    theme.style.tabview.btn.tgl_rel = &tab_trel;
    theme.style.tabview.btn.tgl_pr  = &tab_tpr;
#endif
}

static void tileview_init(void)
{
#if LV_USE_TILEVIEW != 0
    theme.style.tileview.bg   = &lv_style_transp_tight;
    theme.style.tileview.scrl = &lv_style_transp_tight;
    theme.style.tileview.sb   = theme.style.page.sb;
#endif
}

static void table_init(void)
{
#if LV_USE_TABLE != 0
    static lv_style_t cell;
    lv_style_copy(&cell, &panel);
    cell.body.radius       = 0;
    cell.body.border.width = 1;

    theme.style.table.bg   = &lv_style_transp_tight;
    theme.style.table.cell = &cell;
#endif
}

static void win_init(void)
{
#if LV_USE_WIN != 0
    static lv_style_t win_header;

    lv_style_copy(&win_header, &panel);
    win_header.body.radius         = 0;
    win_header.body.padding.left   = LV_DPI / 12;
    win_header.body.padding.right  = LV_DPI / 12;
    win_header.body.padding.top    = LV_DPI / 20;
    win_header.body.padding.bottom = LV_DPI / 20;
    win_header.body.border.opa     = panel.body.border.opa;
    win_header.body.border.width   = panel.body.border.width;
    win_header.body.border.color   = lv_color_hsv_to_rgb(_hue, 20, 80);
    win_header.text.color          = lv_color_hsv_to_rgb(_hue, 5, 100);

    theme.style.win.bg      = &bg;
    theme.style.win.sb      = &sb;
    theme.style.win.header  = &win_header;
    theme.style.win.content = &lv_style_transp;
    theme.style.win.btn.rel = &btn_rel;
    theme.style.win.btn.pr  = &btn_pr;
#endif
}

#if LV_USE_GROUP

static void style_mod(lv_group_t * group, lv_style_t * style)
{
    (void)group; /*Unused*/
#if LV_COLOR_DEPTH != 1
    style->body.border.width = 2;
    style->body.border.color = LV_COLOR_SILVER;
    style->body.border.opa   = LV_OPA_70;
    style->body.shadow.width = LV_DPI / 20;
    style->body.shadow.color = lv_color_hsv_to_rgb(_hue, 20, 90);
    style->body.main_color   = lv_color_hsv_to_rgb(_hue, 40, 80);
    style->body.grad_color   = lv_color_hsv_to_rgb(_hue, 40, 80);
#else
    style->body.border.opa   = LV_OPA_COVER;
    style->body.border.color = LV_COLOR_BLACK;
    style->body.border.width = 2;
#endif
}

static void style_mod_edit(lv_group_t * group, lv_style_t * style)
{
    (void)group; /*Unused*/
#if LV_COLOR_DEPTH != 1
    /*Make the style to be a little bit orange*/
    style->body.border.opa   = LV_OPA_COVER;
    style->body.border.color = LV_COLOR_GREEN;

    /*If not empty or has border then emphasis the border*/
    if(style->body.opa != LV_OPA_TRANSP || style->body.border.width != 0) style->body.border.width = LV_DPI / 20;

    style->body.main_color   = lv_color_mix(style->body.main_color, LV_COLOR_GREEN, LV_OPA_70);
    style->body.grad_color   = lv_color_mix(style->body.grad_color, LV_COLOR_GREEN, LV_OPA_70);
    style->body.shadow.color = lv_color_mix(style->body.shadow.color, LV_COLOR_GREEN, LV_OPA_60);

    style->text.color = lv_color_mix(style->text.color, LV_COLOR_GREEN, LV_OPA_70);
#else
    style->body.border.opa   = LV_OPA_COVER;
    style->body.border.color = LV_COLOR_BLACK;
    style->body.border.width = 3;
#endif
}

#endif /*LV_USE_GROUP*/

/**********************
 *   GLOBAL FUNCTIONS
 **********************/

/**
 * Initialize the nemo theme
 * @param hue [0..360] hue value from HSV color space to define the theme's base color
 * @param font pointer to a font (NULL to use the default)
 * @return pointer to the initialized theme
 */
lv_theme_t * lv_theme_nemo_init(uint16_t hue, lv_font_t * font)
{
    if(font == NULL) font = LV_FONT_DEFAULT;

    _hue  = hue;
    _font = font;

    /*For backward compatibility initialize all theme elements with a default style */
    uint16_t i;
    lv_style_t ** style_p = (lv_style_t **)&theme.style;
    for(i = 0; i < LV_THEME_STYLE_COUNT; i++) {
        *style_p = &def;
        style_p++;
    }

    basic_init();
    btn_init();
    label_init();
    bar_init();
    img_init();
    line_init();
    led_init();
    slider_init();
    sw_init();
    lmeter_init();
    gauge_init();
    arc_init();
    preload_init();
    chart_init();
    calendar_init();
    cb_init();
    btnm_init();
    kb_init();
    mbox_init();
    page_init();
    ta_init();
    spinbox_init();
    list_init();
    ddlist_init();
    roller_init();
    tabview_init();
    tileview_init();
    table_init();
    win_init();

#if LV_USE_GROUP
    theme.group.style_mod_xcb      = style_mod;
    theme.group.style_mod_edit_xcb = style_mod_edit;
#endif

    return &theme;
}

/**
 * Get a pointer to the theme
 * @return pointer to the theme
 */
lv_theme_t * lv_theme_get_nemo(void)
{
    return &theme;
}

/**********************
 *   STATIC FUNCTIONS
 **********************/

#endif