-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColorConverter_GUI.py
More file actions
2076 lines (1884 loc) · 104 KB
/
ColorConverter_GUI.py
File metadata and controls
2076 lines (1884 loc) · 104 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
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
# -*- coding: utf-8 -*-
#! /usr/bin/env python
#
# GUI module generated by PAGE version 4.9
# In conjunction with Tcl version 8.6
# Mar 03, 2018 05:47:43 PM
import sys
try:
from Tkinter import *
except ImportError:
from tkinter import *
try:
import ttk
py3 = 0
except ImportError:
import tkinter.ttk as ttk
py3 = 1
import ColorConverter_GUI_support
def vp_start_gui():
'''Starting point when module is the main routine.'''
global val, w, root
root = Tk()
ColorConverter_GUI_support.set_Tk_var()
top = Color_Converter_by_SMFSW (root)
ColorConverter_GUI_support.init(root, top)
root.mainloop()
w = None
def create_Color_Converter_by_SMFSW(root, *args, **kwargs):
'''Starting point when module is imported by another program.'''
global w, w_win, rt
rt = root
w = Toplevel (root)
ColorConverter_GUI_support.set_Tk_var()
top = Color_Converter_by_SMFSW (w)
ColorConverter_GUI_support.init(w, top, *args, **kwargs)
return (w, top)
def destroy_Color_Converter_by_SMFSW():
global w
w.destroy()
w = None
class Color_Converter_by_SMFSW:
def __init__(self, top=None):
'''This class configures and populates the toplevel window.
top is the toplevel containing window.'''
_bgcolor = 'wheat' # X11 color: #f5deb3
_fgcolor = '#000000' # X11 color: 'black'
_compcolor = '#7f7f7f' # X11 color: 'gray50'
_ana1color = '#7f7f7f' # X11 color: 'gray50'
_ana2color = '#7f7f7f' # X11 color: 'gray50'
font10 = "-family {Courier New} -size 10 -weight normal -slant" \
" roman -underline 0 -overstrike 0"
font11 = "-family Courier -size 8 -weight normal -slant roman " \
"-underline 0 -overstrike 0"
font12 = "-family Courier -size 9 -weight normal -slant roman " \
"-underline 0 -overstrike 0"
font9 = "-family {Segoe UI} -size 9 -weight normal -slant " \
"roman -underline 0 -overstrike 0"
top.geometry("900x530+140+190")
top.title("Color Converter by SMFSW")
top.configure(background="#808080")
top.configure(highlightbackground="#d9d9d9")
top.configure(highlightcolor="black")
self.menubar = Menu(top,font=font9,bg='#808080',fg=_fgcolor)
top.configure(menu = self.menubar)
self.file = Menu(top,tearoff=0)
self.menubar.add_cascade(menu=self.file,
activebackground="#808080",
activeforeground="#111111",
background="#c1ccd9",
font=('Segoe UI',9,'normal','roman',),
foreground="#000000",
label="File")
self.file.add_command(
activebackground="#808080",
activeforeground="#000000",
background="#c1ccd9",
command=ColorConverter_GUI_support.TODO,
font=('Segoe UI',9,'normal','roman',),
foreground="#000000",
label="Open")
self.file.add_command(
activebackground="#808080",
activeforeground="#000000",
background="#c1ccd9",
command=ColorConverter_GUI_support.exit(0),
font=('Segoe UI',9,'normal','roman',),
foreground="#000000",
label="Quit")
self.menubar.add_command(
activebackground="#808080",
activeforeground="#000000",
background="#c1ccd9",
command=ColorConverter_GUI_support.TODO,
font=('Segoe UI',9,'normal','roman',),
foreground="#000000",
label="Help")
self.fraSampleColor = Frame(top)
self.fraSampleColor.place(relx=0.57, rely=0.64, relheight=0.12
, relwidth=0.18)
self.fraSampleColor.configure(relief=GROOVE)
self.fraSampleColor.configure(borderwidth="2")
self.fraSampleColor.configure(relief=GROOVE)
self.fraSampleColor.configure(background="#408080")
self.fraSampleColor.configure(highlightbackground="#d9d9d9")
self.fraSampleColor.configure(highlightcolor="black")
self.fraSampleColor.configure(width=165)
self.fraRGB = Frame(top)
self.fraRGB.place(relx=0.01, rely=0.02, relheight=0.41, relwidth=0.31)
self.fraRGB.configure(relief=GROOVE)
self.fraRGB.configure(borderwidth="2")
self.fraRGB.configure(relief=GROOVE)
self.fraRGB.configure(background="#808080")
self.fraRGB.configure(highlightbackground="#d9d9d9")
self.fraRGB.configure(highlightcolor="black")
self.fraRGB.configure(width=275)
self.labRed = Label(self.fraRGB)
self.labRed.place(relx=0.0, rely=0.09, height=19, width=46)
self.labRed.configure(activebackground="#83839999b1b1")
self.labRed.configure(activeforeground="black")
self.labRed.configure(background="#808080")
self.labRed.configure(disabledforeground="#a3a3a3")
self.labRed.configure(font=font10)
self.labRed.configure(foreground="#000000")
self.labRed.configure(highlightbackground="#d9d9d9")
self.labRed.configure(highlightcolor="black")
self.labRed.configure(justify=RIGHT)
self.labRed.configure(text='''Red''')
self.entRGBx_R = Entry(self.fraRGB)
self.entRGBx_R.place(relx=0.29, rely=0.07, relheight=0.13, relwidth=0.12)
self.entRGBx_R.configure(background="#c1ccd9")
self.entRGBx_R.configure(disabledforeground="#a3a3a3")
self.entRGBx_R.configure(font=font12)
self.entRGBx_R.configure(foreground="#000000")
self.entRGBx_R.configure(highlightbackground="#d9d9d9")
self.entRGBx_R.configure(highlightcolor="black")
self.entRGBx_R.configure(insertbackground="black")
self.entRGBx_R.configure(justify=RIGHT)
self.entRGBx_R.configure(selectbackground="#c4c4c4")
self.entRGBx_R.configure(selectforeground="black")
self.entRGBx_R.configure(textvariable=ColorConverter_GUI_support.RGBW_R)
self.sclRed = Scale(self.fraRGB)
self.sclRed.place(relx=0.44, rely=0.03, relwidth=0.53, relheight=0.0
, height=42)
self.sclRed.configure(activebackground="#a4a4a4")
self.sclRed.configure(background="#808080")
self.sclRed.configure(command=ColorConverter_GUI_support.callback_red(RGB_R))
self.sclRed.configure(font="TkTextFont")
self.sclRed.configure(foreground="#000000")
self.sclRed.configure(highlightbackground="#808080")
self.sclRed.configure(highlightcolor="black")
self.sclRed.configure(length="140")
self.sclRed.configure(orient="horizontal")
self.sclRed.configure(to="255.0")
self.sclRed.configure(troughcolor="#ff0000")
self.sclRed.configure(variable=ColorConverter_GUI_support.RGB_R)
self.labGreen = Label(self.fraRGB)
self.labGreen.place(relx=0.0, rely=0.28, height=19, width=46)
self.labGreen.configure(activebackground="#83839999b1b1")
self.labGreen.configure(activeforeground="black")
self.labGreen.configure(background="#808080")
self.labGreen.configure(disabledforeground="#a3a3a3")
self.labGreen.configure(foreground="#000000")
self.labGreen.configure(highlightbackground="#d9d9d9")
self.labGreen.configure(highlightcolor="black")
self.labGreen.configure(justify=RIGHT)
self.labGreen.configure(text='''Green''')
self.entRGBx_G = Entry(self.fraRGB)
self.entRGBx_G.place(relx=0.29, rely=0.25, relheight=0.13, relwidth=0.12)
self.entRGBx_G.configure(background="#c1ccd9")
self.entRGBx_G.configure(disabledforeground="#a3a3a3")
self.entRGBx_G.configure(font=font12)
self.entRGBx_G.configure(foreground="#000000")
self.entRGBx_G.configure(highlightbackground="#d9d9d9")
self.entRGBx_G.configure(highlightcolor="black")
self.entRGBx_G.configure(insertbackground="black")
self.entRGBx_G.configure(justify=RIGHT)
self.entRGBx_G.configure(selectbackground="#c4c4c4")
self.entRGBx_G.configure(selectforeground="black")
self.entRGBx_G.configure(textvariable=ColorConverter_GUI_support.RGBW_G)
self.sclGreen = Scale(self.fraRGB)
self.sclGreen.place(relx=0.44, rely=0.21, relwidth=0.53, relheight=0.0
, height=42)
self.sclGreen.configure(activebackground="#a4a4a4")
self.sclGreen.configure(background="#808080")
self.sclGreen.configure(command=ColorConverter_GUI_support.callback_green(RGB_G))
self.sclGreen.configure(font="TkTextFont")
self.sclGreen.configure(foreground="#000000")
self.sclGreen.configure(highlightbackground="#808080")
self.sclGreen.configure(highlightcolor="black")
self.sclGreen.configure(length="140")
self.sclGreen.configure(orient="horizontal")
self.sclGreen.configure(to="255.0")
self.sclGreen.configure(troughcolor="#008000")
self.sclGreen.configure(variable=ColorConverter_GUI_support.RGB_G)
self.labBlue = Label(self.fraRGB)
self.labBlue.place(relx=0.0, rely=0.47, height=19, width=46)
self.labBlue.configure(activebackground="#83839999b1b1")
self.labBlue.configure(activeforeground="black")
self.labBlue.configure(background="#808080")
self.labBlue.configure(disabledforeground="#a3a3a3")
self.labBlue.configure(foreground="#000000")
self.labBlue.configure(highlightbackground="#d9d9d9")
self.labBlue.configure(highlightcolor="black")
self.labBlue.configure(justify=RIGHT)
self.labBlue.configure(text='''Blue''')
self.entRGBx_B = Entry(self.fraRGB)
self.entRGBx_B.place(relx=0.29, rely=0.44, relheight=0.13, relwidth=0.12)
self.entRGBx_B.configure(background="#c1ccd9")
self.entRGBx_B.configure(disabledforeground="#a3a3a3")
self.entRGBx_B.configure(font=font12)
self.entRGBx_B.configure(foreground="#000000")
self.entRGBx_B.configure(highlightbackground="#d9d9d9")
self.entRGBx_B.configure(highlightcolor="black")
self.entRGBx_B.configure(insertbackground="black")
self.entRGBx_B.configure(justify=RIGHT)
self.entRGBx_B.configure(selectbackground="#c4c4c4")
self.entRGBx_B.configure(selectforeground="black")
self.entRGBx_B.configure(textvariable=ColorConverter_GUI_support.RGBW_B)
self.sclBlue = Scale(self.fraRGB)
self.sclBlue.place(relx=0.44, rely=0.4, relwidth=0.53, relheight=0.0
, height=42)
self.sclBlue.configure(activebackground="#a4a4a4")
self.sclBlue.configure(background="#808080")
self.sclBlue.configure(command=ColorConverter_GUI_support.callback_blue(RGB_B))
self.sclBlue.configure(font="TkTextFont")
self.sclBlue.configure(foreground="#000000")
self.sclBlue.configure(highlightbackground="#808080")
self.sclBlue.configure(highlightcolor="black")
self.sclBlue.configure(length="140")
self.sclBlue.configure(orient="horizontal")
self.sclBlue.configure(to="255.0")
self.sclBlue.configure(troughcolor="#0000ff")
self.sclBlue.configure(variable=ColorConverter_GUI_support.RGB_B)
self.entRGB_R = Entry(self.fraRGB)
self.entRGB_R.place(relx=0.18, rely=0.07, relheight=0.13, relwidth=0.12)
self.entRGB_R.configure(background="#c1ccd9")
self.entRGB_R.configure(disabledforeground="#a3a3a3")
self.entRGB_R.configure(font=font12)
self.entRGB_R.configure(foreground="#000000")
self.entRGB_R.configure(highlightbackground="#d9d9d9")
self.entRGB_R.configure(highlightcolor="black")
self.entRGB_R.configure(insertbackground="black")
self.entRGB_R.configure(selectbackground="#c4c4c4")
self.entRGB_R.configure(selectforeground="black")
self.entRGB_R.configure(textvariable=ColorConverter_GUI_support.RGB_R)
self.sclWhite = Scale(self.fraRGB)
self.sclWhite.place(relx=0.44, rely=0.59, relwidth=0.53, relheight=0.0
, height=42)
self.sclWhite.configure(activebackground="#a4a4a4")
self.sclWhite.configure(background="#808080")
self.sclWhite.configure(command=ColorConverter_GUI_support.callback_white(RGBW_W))
self.sclWhite.configure(font="TkTextFont")
self.sclWhite.configure(foreground="#000000")
self.sclWhite.configure(highlightbackground="#808080")
self.sclWhite.configure(highlightcolor="black")
self.sclWhite.configure(length="140")
self.sclWhite.configure(orient="horizontal")
self.sclWhite.configure(to="255.0")
self.sclWhite.configure(troughcolor="#ffffff")
self.sclWhite.configure(variable=ColorConverter_GUI_support.RGBW_W)
self.entRGBx_W = Entry(self.fraRGB)
self.entRGBx_W.place(relx=0.29, rely=0.62, relheight=0.13, relwidth=0.12)
self.entRGBx_W.configure(background="#c1ccd9")
self.entRGBx_W.configure(disabledforeground="#a3a3a3")
self.entRGBx_W.configure(font=font12)
self.entRGBx_W.configure(foreground="#000000")
self.entRGBx_W.configure(highlightbackground="#d9d9d9")
self.entRGBx_W.configure(highlightcolor="black")
self.entRGBx_W.configure(insertbackground="black")
self.entRGBx_W.configure(justify=RIGHT)
self.entRGBx_W.configure(selectbackground="#c4c4c4")
self.entRGBx_W.configure(selectforeground="black")
self.entRGBx_W.configure(textvariable=ColorConverter_GUI_support.RGBW_W)
self.sclDim = Scale(self.fraRGB)
self.sclDim.place(relx=0.44, rely=0.77, relwidth=0.53, relheight=0.0
, height=42)
self.sclDim.configure(activebackground="#a4a4a4")
self.sclDim.configure(background="#808080")
self.sclDim.configure(command=ColorConverter_GUI_support.callback_dim(RGBDim_Dim))
self.sclDim.configure(font="TkTextFont")
self.sclDim.configure(foreground="#000000")
self.sclDim.configure(highlightbackground="#808080")
self.sclDim.configure(highlightcolor="black")
self.sclDim.configure(length="140")
self.sclDim.configure(orient="horizontal")
self.sclDim.configure(to="255.0")
self.sclDim.configure(troughcolor="#c1ccd9")
self.sclDim.configure(variable=ColorConverter_GUI_support.RGBDim_Dim)
self.entRGBx_Dim = Entry(self.fraRGB)
self.entRGBx_Dim.place(relx=0.29, rely=0.81, relheight=0.13
, relwidth=0.12)
self.entRGBx_Dim.configure(background="#c1ccd9")
self.entRGBx_Dim.configure(disabledforeground="#a3a3a3")
self.entRGBx_Dim.configure(font=font12)
self.entRGBx_Dim.configure(foreground="#000000")
self.entRGBx_Dim.configure(highlightbackground="#d9d9d9")
self.entRGBx_Dim.configure(highlightcolor="black")
self.entRGBx_Dim.configure(insertbackground="black")
self.entRGBx_Dim.configure(justify=RIGHT)
self.entRGBx_Dim.configure(selectbackground="#c4c4c4")
self.entRGBx_Dim.configure(selectforeground="black")
self.entRGBx_Dim.configure(textvariable=ColorConverter_GUI_support.RGBDim_Dim)
self.chkDim = Checkbutton(self.fraRGB)
self.chkDim.place(relx=0.04, rely=0.84, relheight=0.12, relwidth=0.18)
self.chkDim.configure(activebackground="#808080")
self.chkDim.configure(activeforeground="#000000")
self.chkDim.configure(anchor=W)
self.chkDim.configure(background="#808080")
self.chkDim.configure(disabledforeground="#c0c0c0")
self.chkDim.configure(foreground="#000000")
self.chkDim.configure(highlightbackground="#808080")
self.chkDim.configure(highlightcolor="black")
self.chkDim.configure(justify=LEFT)
self.chkDim.configure(text='''Dim''')
self.chkDim.configure(variable=ColorConverter_GUI_support.RGB_useDim)
self.entRGB_G = Entry(self.fraRGB)
self.entRGB_G.place(relx=0.18, rely=0.25, relheight=0.13, relwidth=0.12)
self.entRGB_G.configure(background="#c1ccd9")
self.entRGB_G.configure(disabledforeground="#a3a3a3")
self.entRGB_G.configure(font=font12)
self.entRGB_G.configure(foreground="#000000")
self.entRGB_G.configure(highlightbackground="#d9d9d9")
self.entRGB_G.configure(highlightcolor="black")
self.entRGB_G.configure(insertbackground="black")
self.entRGB_G.configure(selectbackground="#c4c4c4")
self.entRGB_G.configure(selectforeground="black")
self.entRGB_G.configure(textvariable=ColorConverter_GUI_support.RGB_G)
self.entRGB_B = Entry(self.fraRGB)
self.entRGB_B.place(relx=0.18, rely=0.44, relheight=0.13, relwidth=0.12)
self.entRGB_B.configure(background="#c1ccd9")
self.entRGB_B.configure(disabledforeground="#a3a3a3")
self.entRGB_B.configure(font=font12)
self.entRGB_B.configure(foreground="#000000")
self.entRGB_B.configure(highlightbackground="#d9d9d9")
self.entRGB_B.configure(highlightcolor="black")
self.entRGB_B.configure(insertbackground="black")
self.entRGB_B.configure(selectbackground="#c4c4c4")
self.entRGB_B.configure(selectforeground="black")
self.entRGB_B.configure(textvariable=ColorConverter_GUI_support.RGB_B)
self.fraXYZ = Frame(top)
self.fraXYZ.place(relx=0.17, rely=0.49, relheight=0.18, relwidth=0.15)
self.fraXYZ.configure(relief=GROOVE)
self.fraXYZ.configure(borderwidth="2")
self.fraXYZ.configure(relief=GROOVE)
self.fraXYZ.configure(background="#808080")
self.fraXYZ.configure(highlightbackground="#d9d9d9")
self.fraXYZ.configure(highlightcolor="black")
self.fraXYZ.configure(width=135)
self.labXYZ_X = Label(self.fraXYZ)
self.labXYZ_X.place(relx=0.0, rely=0.07, height=19, width=26)
self.labXYZ_X.configure(activebackground="#83839999b1b1")
self.labXYZ_X.configure(activeforeground="black")
self.labXYZ_X.configure(background="#808080")
self.labXYZ_X.configure(disabledforeground="#a3a3a3")
self.labXYZ_X.configure(font=font10)
self.labXYZ_X.configure(foreground="#000000")
self.labXYZ_X.configure(highlightbackground="#d9d9d9")
self.labXYZ_X.configure(highlightcolor="black")
self.labXYZ_X.configure(justify=RIGHT)
self.labXYZ_X.configure(text='''X''')
self.entXYZ_X = Entry(self.fraXYZ)
self.entXYZ_X.place(relx=0.22, rely=0.07, relheight=0.21, relwidth=0.7)
self.entXYZ_X.configure(background="#c1ccd9")
self.entXYZ_X.configure(disabledforeground="#a3a3a3")
self.entXYZ_X.configure(font=font11)
self.entXYZ_X.configure(foreground="#000000")
self.entXYZ_X.configure(highlightbackground="#d9d9d9")
self.entXYZ_X.configure(highlightcolor="black")
self.entXYZ_X.configure(insertbackground="black")
self.entXYZ_X.configure(selectbackground="#c4c4c4")
self.entXYZ_X.configure(selectforeground="black")
self.entXYZ_X.configure(textvariable=ColorConverter_GUI_support.XYZ_X)
self.labXYZ_Y = Label(self.fraXYZ)
self.labXYZ_Y.place(relx=0.0, rely=0.39, height=19, width=26)
self.labXYZ_Y.configure(activebackground="#83839999b1b1")
self.labXYZ_Y.configure(activeforeground="black")
self.labXYZ_Y.configure(background="#808080")
self.labXYZ_Y.configure(disabledforeground="#a3a3a3")
self.labXYZ_Y.configure(foreground="#000000")
self.labXYZ_Y.configure(highlightbackground="#d9d9d9")
self.labXYZ_Y.configure(highlightcolor="black")
self.labXYZ_Y.configure(justify=RIGHT)
self.labXYZ_Y.configure(text='''Y''')
self.entXYZ_Y = Entry(self.fraXYZ)
self.entXYZ_Y.place(relx=0.22, rely=0.39, relheight=0.21, relwidth=0.7)
self.entXYZ_Y.configure(background="#c1ccd9")
self.entXYZ_Y.configure(disabledforeground="#a3a3a3")
self.entXYZ_Y.configure(font=font11)
self.entXYZ_Y.configure(foreground="#000000")
self.entXYZ_Y.configure(highlightbackground="#d9d9d9")
self.entXYZ_Y.configure(highlightcolor="black")
self.entXYZ_Y.configure(insertbackground="black")
self.entXYZ_Y.configure(selectbackground="#c4c4c4")
self.entXYZ_Y.configure(selectforeground="black")
self.entXYZ_Y.configure(textvariable=ColorConverter_GUI_support.XYZ_Y)
self.labXYZ_Z = Label(self.fraXYZ)
self.labXYZ_Z.place(relx=0.0, rely=0.71, height=19, width=26)
self.labXYZ_Z.configure(activebackground="#83839999b1b1")
self.labXYZ_Z.configure(activeforeground="black")
self.labXYZ_Z.configure(background="#808080")
self.labXYZ_Z.configure(disabledforeground="#a3a3a3")
self.labXYZ_Z.configure(foreground="#000000")
self.labXYZ_Z.configure(highlightbackground="#d9d9d9")
self.labXYZ_Z.configure(highlightcolor="black")
self.labXYZ_Z.configure(justify=RIGHT)
self.labXYZ_Z.configure(text='''Z''')
self.entXYZ_Z = Entry(self.fraXYZ)
self.entXYZ_Z.place(relx=0.22, rely=0.71, relheight=0.21, relwidth=0.7)
self.entXYZ_Z.configure(background="#c1ccd9")
self.entXYZ_Z.configure(disabledbackground="#f0f0f0f0f0f0")
self.entXYZ_Z.configure(disabledforeground="#a3a3a3")
self.entXYZ_Z.configure(font=font11)
self.entXYZ_Z.configure(foreground="#000000")
self.entXYZ_Z.configure(highlightbackground="#d9d9d9")
self.entXYZ_Z.configure(highlightcolor="black")
self.entXYZ_Z.configure(insertbackground="black")
self.entXYZ_Z.configure(selectbackground="#c4c4c4")
self.entXYZ_Z.configure(selectforeground="black")
self.entXYZ_Z.configure(textvariable=ColorConverter_GUI_support.XYZ_Z)
self.fraYxy = Frame(top)
self.fraYxy.place(relx=0.01, rely=0.49, relheight=0.18, relwidth=0.15)
self.fraYxy.configure(relief=GROOVE)
self.fraYxy.configure(borderwidth="2")
self.fraYxy.configure(relief=GROOVE)
self.fraYxy.configure(background="#808080")
self.fraYxy.configure(highlightbackground="#d9d9d9")
self.fraYxy.configure(highlightcolor="black")
self.fraYxy.configure(width=135)
self.labYxy_Y = Label(self.fraYxy)
self.labYxy_Y.place(relx=0.0, rely=0.07, height=19, width=26)
self.labYxy_Y.configure(activebackground="#83839999b1b1")
self.labYxy_Y.configure(activeforeground="black")
self.labYxy_Y.configure(background="#808080")
self.labYxy_Y.configure(disabledforeground="#a3a3a3")
self.labYxy_Y.configure(font=font10)
self.labYxy_Y.configure(foreground="#000000")
self.labYxy_Y.configure(highlightbackground="#d9d9d9")
self.labYxy_Y.configure(highlightcolor="black")
self.labYxy_Y.configure(justify=RIGHT)
self.labYxy_Y.configure(text='''Y''')
self.entYxy_Y = Entry(self.fraYxy)
self.entYxy_Y.place(relx=0.22, rely=0.07, relheight=0.21, relwidth=0.7)
self.entYxy_Y.configure(background="#c1ccd9")
self.entYxy_Y.configure(disabledforeground="#a3a3a3")
self.entYxy_Y.configure(font=font11)
self.entYxy_Y.configure(foreground="#000000")
self.entYxy_Y.configure(highlightbackground="#d9d9d9")
self.entYxy_Y.configure(highlightcolor="black")
self.entYxy_Y.configure(insertbackground="black")
self.entYxy_Y.configure(selectbackground="#c4c4c4")
self.entYxy_Y.configure(selectforeground="black")
self.entYxy_Y.configure(textvariable=ColorConverter_GUI_support.Yxy_Y)
self.labYxy_x = Label(self.fraYxy)
self.labYxy_x.place(relx=0.0, rely=0.39, height=19, width=26)
self.labYxy_x.configure(activebackground="#83839999b1b1")
self.labYxy_x.configure(activeforeground="black")
self.labYxy_x.configure(background="#808080")
self.labYxy_x.configure(disabledforeground="#a3a3a3")
self.labYxy_x.configure(foreground="#000000")
self.labYxy_x.configure(highlightbackground="#d9d9d9")
self.labYxy_x.configure(highlightcolor="black")
self.labYxy_x.configure(justify=RIGHT)
self.labYxy_x.configure(text='''x''')
self.entYxy_x = Entry(self.fraYxy)
self.entYxy_x.place(relx=0.22, rely=0.39, relheight=0.21, relwidth=0.7)
self.entYxy_x.configure(background="#c1ccd9")
self.entYxy_x.configure(disabledforeground="#a3a3a3")
self.entYxy_x.configure(font=font11)
self.entYxy_x.configure(foreground="#000000")
self.entYxy_x.configure(highlightbackground="#d9d9d9")
self.entYxy_x.configure(highlightcolor="black")
self.entYxy_x.configure(insertbackground="black")
self.entYxy_x.configure(selectbackground="#c4c4c4")
self.entYxy_x.configure(selectforeground="black")
self.entYxy_x.configure(textvariable=ColorConverter_GUI_support.Yxy_x)
self.labYxy_y = Label(self.fraYxy)
self.labYxy_y.place(relx=0.0, rely=0.71, height=19, width=26)
self.labYxy_y.configure(activebackground="#83839999b1b1")
self.labYxy_y.configure(activeforeground="black")
self.labYxy_y.configure(background="#808080")
self.labYxy_y.configure(disabledforeground="#a3a3a3")
self.labYxy_y.configure(foreground="#000000")
self.labYxy_y.configure(highlightbackground="#d9d9d9")
self.labYxy_y.configure(highlightcolor="black")
self.labYxy_y.configure(justify=RIGHT)
self.labYxy_y.configure(text='''y''')
self.entYxy_y = Entry(self.fraYxy)
self.entYxy_y.place(relx=0.22, rely=0.71, relheight=0.21, relwidth=0.7)
self.entYxy_y.configure(background="#c1ccd9")
self.entYxy_y.configure(disabledforeground="#a3a3a3")
self.entYxy_y.configure(font=font11)
self.entYxy_y.configure(foreground="#000000")
self.entYxy_y.configure(highlightbackground="#d9d9d9")
self.entYxy_y.configure(highlightcolor="black")
self.entYxy_y.configure(insertbackground="black")
self.entYxy_y.configure(selectbackground="#c4c4c4")
self.entYxy_y.configure(selectforeground="black")
self.entYxy_y.configure(textvariable=ColorConverter_GUI_support.Yxy_y)
self.fraHSV = Frame(top)
self.fraHSV.place(relx=0.51, rely=0.02, relheight=0.18, relwidth=0.12)
self.fraHSV.configure(relief=GROOVE)
self.fraHSV.configure(borderwidth="2")
self.fraHSV.configure(relief=GROOVE)
self.fraHSV.configure(background="#808080")
self.fraHSV.configure(highlightbackground="#d9d9d9")
self.fraHSV.configure(highlightcolor="black")
self.fraHSV.configure(width=105)
self.labHSV_H = Label(self.fraHSV)
self.labHSV_H.place(relx=0.0, rely=0.07, height=19, width=26)
self.labHSV_H.configure(activebackground="#83839999b1b1")
self.labHSV_H.configure(activeforeground="black")
self.labHSV_H.configure(background="#808080")
self.labHSV_H.configure(disabledforeground="#a3a3a3")
self.labHSV_H.configure(font=font10)
self.labHSV_H.configure(foreground="#000000")
self.labHSV_H.configure(highlightbackground="#d9d9d9")
self.labHSV_H.configure(highlightcolor="black")
self.labHSV_H.configure(justify=RIGHT)
self.labHSV_H.configure(text='''H''')
self.entHSV_H = Entry(self.fraHSV)
self.entHSV_H.place(relx=0.29, rely=0.07, relheight=0.21, relwidth=0.61)
self.entHSV_H.configure(background="#c1ccd9")
self.entHSV_H.configure(disabledforeground="#a3a3a3")
self.entHSV_H.configure(font=font11)
self.entHSV_H.configure(foreground="#000000")
self.entHSV_H.configure(highlightbackground="#d9d9d9")
self.entHSV_H.configure(highlightcolor="black")
self.entHSV_H.configure(insertbackground="black")
self.entHSV_H.configure(selectbackground="#c4c4c4")
self.entHSV_H.configure(selectforeground="black")
self.entHSV_H.configure(textvariable=ColorConverter_GUI_support.HSV_H)
self.labHSV_S = Label(self.fraHSV)
self.labHSV_S.place(relx=0.0, rely=0.39, height=19, width=26)
self.labHSV_S.configure(activebackground="#83839999b1b1")
self.labHSV_S.configure(activeforeground="black")
self.labHSV_S.configure(background="#808080")
self.labHSV_S.configure(disabledforeground="#a3a3a3")
self.labHSV_S.configure(foreground="#000000")
self.labHSV_S.configure(highlightbackground="#d9d9d9")
self.labHSV_S.configure(highlightcolor="black")
self.labHSV_S.configure(justify=RIGHT)
self.labHSV_S.configure(text='''S''')
self.entHSV_S = Entry(self.fraHSV)
self.entHSV_S.place(relx=0.29, rely=0.39, relheight=0.21, relwidth=0.61)
self.entHSV_S.configure(background="#c1ccd9")
self.entHSV_S.configure(disabledforeground="#a3a3a3")
self.entHSV_S.configure(font=font11)
self.entHSV_S.configure(foreground="#000000")
self.entHSV_S.configure(highlightbackground="#d9d9d9")
self.entHSV_S.configure(highlightcolor="black")
self.entHSV_S.configure(insertbackground="black")
self.entHSV_S.configure(selectbackground="#c4c4c4")
self.entHSV_S.configure(selectforeground="black")
self.entHSV_S.configure(textvariable=ColorConverter_GUI_support.HSV_S)
self.labHSV_V = Label(self.fraHSV)
self.labHSV_V.place(relx=0.0, rely=0.71, height=19, width=26)
self.labHSV_V.configure(activebackground="#83839999b1b1")
self.labHSV_V.configure(activeforeground="black")
self.labHSV_V.configure(background="#808080")
self.labHSV_V.configure(disabledforeground="#a3a3a3")
self.labHSV_V.configure(foreground="#000000")
self.labHSV_V.configure(highlightbackground="#d9d9d9")
self.labHSV_V.configure(highlightcolor="black")
self.labHSV_V.configure(justify=RIGHT)
self.labHSV_V.configure(text='''V''')
self.entHSV_V = Entry(self.fraHSV)
self.entHSV_V.place(relx=0.29, rely=0.71, relheight=0.21, relwidth=0.61)
self.entHSV_V.configure(background="#c1ccd9")
self.entHSV_V.configure(disabledforeground="#a3a3a3")
self.entHSV_V.configure(font=font11)
self.entHSV_V.configure(foreground="#000000")
self.entHSV_V.configure(highlightbackground="#d9d9d9")
self.entHSV_V.configure(highlightcolor="black")
self.entHSV_V.configure(insertbackground="black")
self.entHSV_V.configure(selectbackground="#c4c4c4")
self.entHSV_V.configure(selectforeground="black")
self.entHSV_V.configure(textvariable=ColorConverter_GUI_support.HSV_V)
self.fraHSL = Frame(top)
self.fraHSL.place(relx=0.63, rely=0.02, relheight=0.18, relwidth=0.12)
self.fraHSL.configure(relief=GROOVE)
self.fraHSL.configure(borderwidth="2")
self.fraHSL.configure(relief=GROOVE)
self.fraHSL.configure(background="#808080")
self.fraHSL.configure(highlightbackground="#d9d9d9")
self.fraHSL.configure(highlightcolor="black")
self.fraHSL.configure(width=105)
self.labHSL_H = Label(self.fraHSL)
self.labHSL_H.place(relx=0.0, rely=0.07, height=19, width=26)
self.labHSL_H.configure(activebackground="#83839999b1b1")
self.labHSL_H.configure(activeforeground="black")
self.labHSL_H.configure(background="#808080")
self.labHSL_H.configure(disabledforeground="#a3a3a3")
self.labHSL_H.configure(font=font10)
self.labHSL_H.configure(foreground="#000000")
self.labHSL_H.configure(highlightbackground="#d9d9d9")
self.labHSL_H.configure(highlightcolor="black")
self.labHSL_H.configure(justify=RIGHT)
self.labHSL_H.configure(text='''H''')
self.entHSL_H = Entry(self.fraHSL)
self.entHSL_H.place(relx=0.29, rely=0.07, relheight=0.21, relwidth=0.61)
self.entHSL_H.configure(background="#c1ccd9")
self.entHSL_H.configure(disabledforeground="#a3a3a3")
self.entHSL_H.configure(font=font11)
self.entHSL_H.configure(foreground="#000000")
self.entHSL_H.configure(highlightbackground="#d9d9d9")
self.entHSL_H.configure(highlightcolor="black")
self.entHSL_H.configure(insertbackground="black")
self.entHSL_H.configure(selectbackground="#c4c4c4")
self.entHSL_H.configure(selectforeground="black")
self.entHSL_H.configure(textvariable=ColorConverter_GUI_support.HSL_H)
self.labHSL_S = Label(self.fraHSL)
self.labHSL_S.place(relx=0.0, rely=0.39, height=19, width=26)
self.labHSL_S.configure(activebackground="#83839999b1b1")
self.labHSL_S.configure(activeforeground="black")
self.labHSL_S.configure(background="#808080")
self.labHSL_S.configure(disabledforeground="#a3a3a3")
self.labHSL_S.configure(foreground="#000000")
self.labHSL_S.configure(highlightbackground="#d9d9d9")
self.labHSL_S.configure(highlightcolor="black")
self.labHSL_S.configure(justify=RIGHT)
self.labHSL_S.configure(text='''S''')
self.entHSL_S = Entry(self.fraHSL)
self.entHSL_S.place(relx=0.29, rely=0.39, relheight=0.21, relwidth=0.61)
self.entHSL_S.configure(background="#c1ccd9")
self.entHSL_S.configure(disabledforeground="#a3a3a3")
self.entHSL_S.configure(font=font11)
self.entHSL_S.configure(foreground="#000000")
self.entHSL_S.configure(highlightbackground="#d9d9d9")
self.entHSL_S.configure(highlightcolor="black")
self.entHSL_S.configure(insertbackground="black")
self.entHSL_S.configure(selectbackground="#c4c4c4")
self.entHSL_S.configure(selectforeground="black")
self.entHSL_S.configure(textvariable=ColorConverter_GUI_support.HSL_S)
self.labHSL_L = Label(self.fraHSL)
self.labHSL_L.place(relx=0.0, rely=0.71, height=19, width=26)
self.labHSL_L.configure(activebackground="#83839999b1b1")
self.labHSL_L.configure(activeforeground="black")
self.labHSL_L.configure(background="#808080")
self.labHSL_L.configure(disabledforeground="#a3a3a3")
self.labHSL_L.configure(foreground="#000000")
self.labHSL_L.configure(highlightbackground="#d9d9d9")
self.labHSL_L.configure(highlightcolor="black")
self.labHSL_L.configure(justify=RIGHT)
self.labHSL_L.configure(text='''L''')
self.entHSL_L = Entry(self.fraHSL)
self.entHSL_L.place(relx=0.29, rely=0.71, relheight=0.21, relwidth=0.61)
self.entHSL_L.configure(background="#c1ccd9")
self.entHSL_L.configure(disabledforeground="#a3a3a3")
self.entHSL_L.configure(font=font11)
self.entHSL_L.configure(foreground="#000000")
self.entHSL_L.configure(highlightbackground="#d9d9d9")
self.entHSL_L.configure(highlightcolor="black")
self.entHSL_L.configure(insertbackground="black")
self.entHSL_L.configure(selectbackground="#c4c4c4")
self.entHSL_L.configure(selectforeground="black")
self.entHSL_L.configure(textvariable=ColorConverter_GUI_support.HSL_L)
self.fraCIELuv = Frame(top)
self.fraCIELuv.place(relx=0.32, rely=0.4, relheight=0.18, relwidth=0.15)
self.fraCIELuv.configure(relief=GROOVE)
self.fraCIELuv.configure(borderwidth="2")
self.fraCIELuv.configure(relief=GROOVE)
self.fraCIELuv.configure(background="#808080")
self.fraCIELuv.configure(highlightbackground="#d9d9d9")
self.fraCIELuv.configure(highlightcolor="black")
self.fraCIELuv.configure(width=135)
self.labLuv_L = Label(self.fraCIELuv)
self.labLuv_L.place(relx=0.0, rely=0.07, height=19, width=26)
self.labLuv_L.configure(activebackground="#83839999b1b1")
self.labLuv_L.configure(activeforeground="black")
self.labLuv_L.configure(background="#808080")
self.labLuv_L.configure(disabledforeground="#a3a3a3")
self.labLuv_L.configure(font=font10)
self.labLuv_L.configure(foreground="#000000")
self.labLuv_L.configure(highlightbackground="#d9d9d9")
self.labLuv_L.configure(highlightcolor="black")
self.labLuv_L.configure(justify=RIGHT)
self.labLuv_L.configure(text='''L*''')
self.entLuv_L = Entry(self.fraCIELuv)
self.entLuv_L.place(relx=0.22, rely=0.07, relheight=0.21, relwidth=0.7)
self.entLuv_L.configure(background="#c1ccd9")
self.entLuv_L.configure(disabledforeground="#a3a3a3")
self.entLuv_L.configure(font=font11)
self.entLuv_L.configure(foreground="#000000")
self.entLuv_L.configure(highlightbackground="#d9d9d9")
self.entLuv_L.configure(highlightcolor="black")
self.entLuv_L.configure(insertbackground="black")
self.entLuv_L.configure(selectbackground="#c4c4c4")
self.entLuv_L.configure(selectforeground="black")
self.entLuv_L.configure(textvariable=ColorConverter_GUI_support.CLuv_L)
self.labLuv_u = Label(self.fraCIELuv)
self.labLuv_u.place(relx=0.0, rely=0.39, height=19, width=26)
self.labLuv_u.configure(activebackground="#83839999b1b1")
self.labLuv_u.configure(activeforeground="black")
self.labLuv_u.configure(background="#808080")
self.labLuv_u.configure(disabledforeground="#a3a3a3")
self.labLuv_u.configure(foreground="#000000")
self.labLuv_u.configure(highlightbackground="#d9d9d9")
self.labLuv_u.configure(highlightcolor="black")
self.labLuv_u.configure(justify=RIGHT)
self.labLuv_u.configure(text='''u''')
self.entLuv_u = Entry(self.fraCIELuv)
self.entLuv_u.place(relx=0.22, rely=0.39, relheight=0.21, relwidth=0.7)
self.entLuv_u.configure(background="#c1ccd9")
self.entLuv_u.configure(disabledforeground="#a3a3a3")
self.entLuv_u.configure(font=font11)
self.entLuv_u.configure(foreground="#000000")
self.entLuv_u.configure(highlightbackground="#d9d9d9")
self.entLuv_u.configure(highlightcolor="black")
self.entLuv_u.configure(insertbackground="black")
self.entLuv_u.configure(selectbackground="#c4c4c4")
self.entLuv_u.configure(selectforeground="black")
self.entLuv_u.configure(textvariable=ColorConverter_GUI_support.CLuv_u)
self.labLuv_v = Label(self.fraCIELuv)
self.labLuv_v.place(relx=0.0, rely=0.71, height=19, width=26)
self.labLuv_v.configure(activebackground="#83839999b1b1")
self.labLuv_v.configure(activeforeground="black")
self.labLuv_v.configure(background="#808080")
self.labLuv_v.configure(disabledforeground="#a3a3a3")
self.labLuv_v.configure(foreground="#000000")
self.labLuv_v.configure(highlightbackground="#d9d9d9")
self.labLuv_v.configure(highlightcolor="black")
self.labLuv_v.configure(justify=RIGHT)
self.labLuv_v.configure(text='''v''')
self.entLuv_v = Entry(self.fraCIELuv)
self.entLuv_v.place(relx=0.22, rely=0.71, relheight=0.21, relwidth=0.7)
self.entLuv_v.configure(background="#c1ccd9")
self.entLuv_v.configure(disabledforeground="#a3a3a3")
self.entLuv_v.configure(font=font11)
self.entLuv_v.configure(foreground="#000000")
self.entLuv_v.configure(highlightbackground="#d9d9d9")
self.entLuv_v.configure(highlightcolor="black")
self.entLuv_v.configure(insertbackground="black")
self.entLuv_v.configure(selectbackground="#c4c4c4")
self.entLuv_v.configure(selectforeground="black")
self.entLuv_v.configure(textvariable=ColorConverter_GUI_support.CLuv_v)
self.fraCIELCHab = Frame(top)
self.fraCIELCHab.place(relx=0.48, rely=0.21, relheight=0.18
, relwidth=0.15)
self.fraCIELCHab.configure(relief=GROOVE)
self.fraCIELCHab.configure(borderwidth="2")
self.fraCIELCHab.configure(relief=GROOVE)
self.fraCIELCHab.configure(background="#808080")
self.fraCIELCHab.configure(highlightbackground="#d9d9d9")
self.fraCIELCHab.configure(highlightcolor="black")
self.fraCIELCHab.configure(width=135)
self.labLCHab_L = Label(self.fraCIELCHab)
self.labLCHab_L.place(relx=0.0, rely=0.07, height=19, width=26)
self.labLCHab_L.configure(activebackground="#83839999b1b1")
self.labLCHab_L.configure(activeforeground="black")
self.labLCHab_L.configure(background="#808080")
self.labLCHab_L.configure(disabledforeground="#a3a3a3")
self.labLCHab_L.configure(font=font10)
self.labLCHab_L.configure(foreground="#000000")
self.labLCHab_L.configure(highlightbackground="#d9d9d9")
self.labLCHab_L.configure(highlightcolor="black")
self.labLCHab_L.configure(justify=RIGHT)
self.labLCHab_L.configure(text='''L*''')
self.entLCHab_L = Entry(self.fraCIELCHab)
self.entLCHab_L.place(relx=0.22, rely=0.07, relheight=0.21, relwidth=0.7)
self.entLCHab_L.configure(background="#c1ccd9")
self.entLCHab_L.configure(disabledforeground="#a3a3a3")
self.entLCHab_L.configure(font=font11)
self.entLCHab_L.configure(foreground="#000000")
self.entLCHab_L.configure(highlightbackground="#d9d9d9")
self.entLCHab_L.configure(highlightcolor="black")
self.entLCHab_L.configure(insertbackground="black")
self.entLCHab_L.configure(selectbackground="#c4c4c4")
self.entLCHab_L.configure(selectforeground="black")
self.entLCHab_L.configure(textvariable=ColorConverter_GUI_support.CLCHab_L)
self.labLCHab_C = Label(self.fraCIELCHab)
self.labLCHab_C.place(relx=0.0, rely=0.39, height=19, width=26)
self.labLCHab_C.configure(activebackground="#83839999b1b1")
self.labLCHab_C.configure(activeforeground="black")
self.labLCHab_C.configure(background="#808080")
self.labLCHab_C.configure(disabledforeground="#a3a3a3")
self.labLCHab_C.configure(foreground="#000000")
self.labLCHab_C.configure(highlightbackground="#d9d9d9")
self.labLCHab_C.configure(highlightcolor="black")
self.labLCHab_C.configure(justify=RIGHT)
self.labLCHab_C.configure(text='''C''')
self.entLCHab_C = Entry(self.fraCIELCHab)
self.entLCHab_C.place(relx=0.22, rely=0.39, relheight=0.21, relwidth=0.7)
self.entLCHab_C.configure(background="#c1ccd9")
self.entLCHab_C.configure(disabledforeground="#a3a3a3")
self.entLCHab_C.configure(font=font11)
self.entLCHab_C.configure(foreground="#000000")
self.entLCHab_C.configure(highlightbackground="#d9d9d9")
self.entLCHab_C.configure(highlightcolor="black")
self.entLCHab_C.configure(insertbackground="black")
self.entLCHab_C.configure(selectbackground="#c4c4c4")
self.entLCHab_C.configure(selectforeground="black")
self.entLCHab_C.configure(textvariable=ColorConverter_GUI_support.CLCHab_C)
self.labLCHab_H = Label(self.fraCIELCHab)
self.labLCHab_H.place(relx=0.0, rely=0.71, height=19, width=26)
self.labLCHab_H.configure(activebackground="#83839999b1b1")
self.labLCHab_H.configure(activeforeground="black")
self.labLCHab_H.configure(background="#808080")
self.labLCHab_H.configure(disabledforeground="#a3a3a3")
self.labLCHab_H.configure(foreground="#000000")
self.labLCHab_H.configure(highlightbackground="#d9d9d9")
self.labLCHab_H.configure(highlightcolor="black")
self.labLCHab_H.configure(justify=RIGHT)
self.labLCHab_H.configure(text='''H°''')
self.entLCHab_H = Entry(self.fraCIELCHab)
self.entLCHab_H.place(relx=0.22, rely=0.71, relheight=0.21, relwidth=0.7)
self.entLCHab_H.configure(background="#c1ccd9")
self.entLCHab_H.configure(disabledforeground="#a3a3a3")
self.entLCHab_H.configure(font=font11)
self.entLCHab_H.configure(foreground="#000000")
self.entLCHab_H.configure(highlightbackground="#d9d9d9")
self.entLCHab_H.configure(highlightcolor="black")
self.entLCHab_H.configure(insertbackground="black")
self.entLCHab_H.configure(selectbackground="#c4c4c4")
self.entLCHab_H.configure(selectforeground="black")
self.entLCHab_H.configure(textvariable=ColorConverter_GUI_support.CLCHab_H)
self.fraHunterLab = Frame(top)
self.fraHunterLab.place(relx=0.17, rely=0.68, relheight=0.18
, relwidth=0.15)
self.fraHunterLab.configure(relief=GROOVE)
self.fraHunterLab.configure(borderwidth="2")
self.fraHunterLab.configure(relief=GROOVE)
self.fraHunterLab.configure(background="#808080")
self.fraHunterLab.configure(highlightbackground="#d9d9d9")
self.fraHunterLab.configure(highlightcolor="black")
self.fraHunterLab.configure(width=135)
self.labHLab_L = Label(self.fraHunterLab)
self.labHLab_L.place(relx=0.0, rely=0.07, height=19, width=26)
self.labHLab_L.configure(activebackground="#83839999b1b1")
self.labHLab_L.configure(activeforeground="black")
self.labHLab_L.configure(background="#808080")
self.labHLab_L.configure(disabledforeground="#a3a3a3")
self.labHLab_L.configure(font=font10)
self.labHLab_L.configure(foreground="#000000")
self.labHLab_L.configure(highlightbackground="#d9d9d9")
self.labHLab_L.configure(highlightcolor="black")
self.labHLab_L.configure(justify=RIGHT)
self.labHLab_L.configure(text='''HL*''')
self.entHLab_L = Entry(self.fraHunterLab)
self.entHLab_L.place(relx=0.22, rely=0.07, relheight=0.21, relwidth=0.7)
self.entHLab_L.configure(background="#c1ccd9")
self.entHLab_L.configure(disabledforeground="#a3a3a3")
self.entHLab_L.configure(font=font11)
self.entHLab_L.configure(foreground="#000000")
self.entHLab_L.configure(highlightbackground="#d9d9d9")
self.entHLab_L.configure(highlightcolor="black")
self.entHLab_L.configure(insertbackground="black")
self.entHLab_L.configure(selectbackground="#c4c4c4")
self.entHLab_L.configure(selectforeground="black")
self.entHLab_L.configure(textvariable=ColorConverter_GUI_support.HLab_L)
self.labHLab_a = Label(self.fraHunterLab)
self.labHLab_a.place(relx=0.0, rely=0.39, height=19, width=26)
self.labHLab_a.configure(activebackground="#83839999b1b1")
self.labHLab_a.configure(activeforeground="black")
self.labHLab_a.configure(background="#808080")
self.labHLab_a.configure(disabledforeground="#a3a3a3")
self.labHLab_a.configure(foreground="#000000")
self.labHLab_a.configure(highlightbackground="#d9d9d9")
self.labHLab_a.configure(highlightcolor="black")
self.labHLab_a.configure(justify=RIGHT)
self.labHLab_a.configure(text='''Ha''')
self.entHLab_a = Entry(self.fraHunterLab)
self.entHLab_a.place(relx=0.22, rely=0.39, relheight=0.21, relwidth=0.7)
self.entHLab_a.configure(background="#c1ccd9")
self.entHLab_a.configure(disabledforeground="#a3a3a3")
self.entHLab_a.configure(font=font11)
self.entHLab_a.configure(foreground="#000000")
self.entHLab_a.configure(highlightbackground="#d9d9d9")
self.entHLab_a.configure(highlightcolor="black")
self.entHLab_a.configure(insertbackground="black")
self.entHLab_a.configure(selectbackground="#c4c4c4")
self.entHLab_a.configure(selectforeground="black")
self.entHLab_a.configure(textvariable=ColorConverter_GUI_support.HLab_a)
self.labHLab_b = Label(self.fraHunterLab)
self.labHLab_b.place(relx=0.0, rely=0.71, height=19, width=26)
self.labHLab_b.configure(activebackground="#83839999b1b1")
self.labHLab_b.configure(activeforeground="black")
self.labHLab_b.configure(background="#808080")
self.labHLab_b.configure(disabledforeground="#a3a3a3")
self.labHLab_b.configure(foreground="#000000")
self.labHLab_b.configure(highlightbackground="#d9d9d9")
self.labHLab_b.configure(highlightcolor="black")
self.labHLab_b.configure(justify=RIGHT)
self.labHLab_b.configure(text='''Hb''')
self.entHLab_b = Entry(self.fraHunterLab)
self.entHLab_b.place(relx=0.22, rely=0.71, relheight=0.21, relwidth=0.7)
self.entHLab_b.configure(background="#c1ccd9")
self.entHLab_b.configure(disabledforeground="#a3a3a3")
self.entHLab_b.configure(font=font11)
self.entHLab_b.configure(foreground="#000000")
self.entHLab_b.configure(highlightbackground="#d9d9d9")
self.entHLab_b.configure(highlightcolor="black")
self.entHLab_b.configure(insertbackground="black")
self.entHLab_b.configure(selectbackground="#c4c4c4")
self.entHLab_b.configure(selectforeground="black")
self.entHLab_b.configure(textvariable=ColorConverter_GUI_support.HLab_b)
self.fraCIELab = Frame(top)
self.fraCIELab.place(relx=0.32, rely=0.21, relheight=0.18, relwidth=0.15)
self.fraCIELab.configure(relief=GROOVE)
self.fraCIELab.configure(borderwidth="2")
self.fraCIELab.configure(relief=GROOVE)
self.fraCIELab.configure(background="#808080")
self.fraCIELab.configure(highlightbackground="#d9d9d9")
self.fraCIELab.configure(highlightcolor="black")
self.fraCIELab.configure(width=135)
self.labCLab_L = Label(self.fraCIELab)
self.labCLab_L.place(relx=0.0, rely=0.07, height=19, width=26)
self.labCLab_L.configure(activebackground="#83839999b1b1")
self.labCLab_L.configure(activeforeground="black")