@@ -10,31 +10,56 @@ def __init__(self, colors, wallpaper_data, light_blend_multiplier=1, dark_blend_
10
10
dbm = range_check (dark_blend_multiplier ,0 ,4 )
11
11
12
12
tone = 30
13
- pywal_colors_dark = ()
13
+
14
14
pywal_colors_dark = (blendColors (
15
15
tones_neutral ['8' ], colors ['dark' ]['Primary' ], .01 ),)
16
+ pywal_colors_dark_intense = (blendColors (
17
+ colors ['dark' ]['OnSurface' ], colors ['dark' ]['Secondary' ], .7 ),)
18
+ pywal_colors_dark_faint = (blendColors (
19
+ colors ['dark' ]['OnSurface' ], colors ['dark' ]['Secondary' ], .35 ),)
20
+
16
21
for x in range (7 ):
17
22
str_x = str (x )
18
23
if str_x in colors_best .keys ():
19
24
pywal_colors_dark += (blendColors (
20
25
colors ['dark' ]['OnSurface' ], colors_best [str_x ], .55 ),)
26
+ pywal_colors_dark_intense += (blendColors (
27
+ colors ['dark' ]['OnSurface' ], colors_best [str_x ], .70 ),)
28
+ pywal_colors_dark_faint += (blendColors (
29
+ colors ['dark' ]['OnSurface' ], colors_best [str_x ], .35 ),)
21
30
else :
22
31
pywal_colors_dark += (blendColors (
23
32
colors ['dark' ]['OnSurface' ], tones_primary [str (tone )], .58 ),)
33
+ pywal_colors_dark_intense += (blendColors (
34
+ colors ['dark' ]['OnSurface' ], tones_primary [str (tone )], .73 ),)
35
+ pywal_colors_dark_faint += (blendColors (
36
+ colors ['dark' ]['OnSurface' ], tones_primary [str (tone )], .38 ),)
24
37
tone += 10
25
38
26
39
tone = 30
27
- pywal_colors_light = ()
28
40
pywal_colors_light = (blendColors (
29
- tones_neutral ['98' ], colors ['light' ]['Primary' ], .01 ),)
41
+ tones_neutral ['92' ], colors ['light' ]['Primary' ], .01 ),)
42
+ pywal_colors_light_intense = (blendColors (
43
+ colors ['light' ]['OnSurface' ], colors ['light' ]['Secondary' ], .35 ),)
44
+ pywal_colors_light_faint = (blendColors (
45
+ colors ['light' ]['OnSurface' ], colors ['light' ]['Secondary' ], .7 ),)
46
+
30
47
for x in range (7 ):
31
48
str_x = str (x )
32
49
if str_x in colors_best .keys ():
33
50
pywal_colors_light += (blendColors (
34
- colors ['light' ]['OnSurface' ], colors_best [str_x ], .70 ),)
51
+ colors ['light' ]['OnSurface' ], colors_best [str_x ], .85 ),)
52
+ pywal_colors_light_intense += (blendColors (
53
+ colors ['light' ]['OnSurface' ], colors_best [str_x ], .80 ),)
54
+ pywal_colors_light_faint += (blendColors (
55
+ colors ['light' ]['OnSurface' ], colors_best [str_x ], .99 ),)
35
56
else :
36
57
pywal_colors_light += (blendColors (
37
- colors ['light' ]['OnSurface' ], tones_primary [str (tone )], .8 ),)
58
+ colors ['light' ]['OnSurface' ], tones_primary [str (tone )], .88 ),)
59
+ pywal_colors_light_intense += (blendColors (
60
+ colors ['light' ]['OnSurface' ], tones_primary [str (tone )], .83 ),)
61
+ pywal_colors_light_faint += (blendColors (
62
+ colors ['light' ]['OnSurface' ], tones_primary [str (tone )], .92 ),)
38
63
tone += 10
39
64
40
65
# Base text states taken from Breeze Color Scheme
@@ -403,9 +428,19 @@ def __init__(self, colors, wallpaper_data, light_blend_multiplier=1, dark_blend_
403
428
404
429
"special" : {
405
430
"background" : pywal_colors_light [0 ],
431
+ "backgroundIntense" : blendColors (
432
+ tones_neutral ['8' ], colors ['light' ]['Primary' ], .0 ),
433
+ "backgroundFaint" : blendColors (
434
+ tones_neutral ['8' ], colors ['light' ]['Primary' ], .35 ),
406
435
"foreground" : colors ['light' ]['OnSurface' ],
407
- "cursor" : colors ['light' ]['OnSurface' ],
436
+ "foregroundIntense" : blendColors (
437
+ colors ['light' ]['OnSurface' ], colors ['light' ]['Secondary' ], .7 ),
438
+ "foregroundFaint" : blendColors (
439
+ colors ['light' ]['OnSurface' ], colors ['light' ]['Secondary' ], .35 ),
440
+
441
+ "cursor" : colors ['dark' ]['OnSurface' ],
408
442
},
443
+
409
444
"colors" : {
410
445
"color0" : pywal_colors_light [0 ],
411
446
"color1" : pywal_colors_light [1 ],
@@ -415,14 +450,22 @@ def __init__(self, colors, wallpaper_data, light_blend_multiplier=1, dark_blend_
415
450
"color5" : pywal_colors_light [5 ],
416
451
"color6" : pywal_colors_light [6 ],
417
452
"color7" : pywal_colors_light [7 ],
418
- "color8" : colors ['light' ]['Secondary' ],
419
- "color9" : pywal_colors_light [1 ],
420
- "color10" : pywal_colors_light [2 ],
421
- "color11" : pywal_colors_light [3 ],
422
- "color12" : pywal_colors_light [4 ],
423
- "color13" : pywal_colors_light [5 ],
424
- "color14" : pywal_colors_light [6 ],
425
- "color15" : pywal_colors_light [7 ]
453
+ "color8" : pywal_colors_light_intense [0 ],
454
+ "color9" : pywal_colors_light_intense [1 ],
455
+ "color10" : pywal_colors_light_intense [2 ],
456
+ "color11" : pywal_colors_light_intense [3 ],
457
+ "color12" : pywal_colors_light_intense [4 ],
458
+ "color13" : pywal_colors_light_intense [5 ],
459
+ "color14" : pywal_colors_light_intense [6 ],
460
+ "color15" : pywal_colors_light_intense [7 ],
461
+ "color16" : pywal_colors_light_faint [0 ],
462
+ "color17" : pywal_colors_light_faint [1 ],
463
+ "color18" : pywal_colors_light_faint [2 ],
464
+ "color19" : pywal_colors_light_faint [3 ],
465
+ "color20" : pywal_colors_light_faint [4 ],
466
+ "color21" : pywal_colors_light_faint [5 ],
467
+ "color22" : pywal_colors_light_faint [6 ],
468
+ "color23" : pywal_colors_light_faint [7 ]
426
469
}
427
470
}
428
471
@@ -432,9 +475,18 @@ def __init__(self, colors, wallpaper_data, light_blend_multiplier=1, dark_blend_
432
475
433
476
"special" : {
434
477
"background" : pywal_colors_dark [0 ],
478
+ "backgroundIntense" : blendColors (
479
+ tones_neutral ['8' ], colors ['dark' ]['Primary' ], .0 ),
480
+ "backgroundFaint" : blendColors (
481
+ tones_neutral ['8' ], colors ['dark' ]['Primary' ], .35 ),
435
482
"foreground" : colors ['dark' ]['OnSurface' ],
483
+ "foregroundIntense" : blendColors (
484
+ colors ['dark' ]['OnSurface' ], colors ['dark' ]['Secondary' ], .7 ),
485
+ "foregroundFaint" : blendColors (
486
+ colors ['dark' ]['OnSurface' ], colors ['dark' ]['Secondary' ], .35 ),
436
487
"cursor" : colors ['dark' ]['OnSurface' ],
437
488
},
489
+
438
490
"colors" : {
439
491
"color0" : pywal_colors_dark [0 ],
440
492
"color1" : pywal_colors_dark [1 ],
@@ -444,14 +496,22 @@ def __init__(self, colors, wallpaper_data, light_blend_multiplier=1, dark_blend_
444
496
"color5" : pywal_colors_dark [5 ],
445
497
"color6" : pywal_colors_dark [6 ],
446
498
"color7" : pywal_colors_dark [7 ],
447
- "color8" : colors ['dark' ]['Secondary' ],
448
- "color9" : pywal_colors_dark [1 ],
449
- "color10" : pywal_colors_dark [2 ],
450
- "color11" : pywal_colors_dark [3 ],
451
- "color12" : pywal_colors_dark [4 ],
452
- "color13" : pywal_colors_dark [5 ],
453
- "color14" : pywal_colors_dark [6 ],
454
- "color15" : pywal_colors_dark [7 ]
499
+ "color8" : pywal_colors_dark_intense [0 ],
500
+ "color9" : pywal_colors_dark_intense [1 ],
501
+ "color10" : pywal_colors_dark_intense [2 ],
502
+ "color11" : pywal_colors_dark_intense [3 ],
503
+ "color12" : pywal_colors_dark_intense [4 ],
504
+ "color13" : pywal_colors_dark_intense [5 ],
505
+ "color14" : pywal_colors_dark_intense [6 ],
506
+ "color15" : pywal_colors_dark_intense [7 ],
507
+ "color16" : pywal_colors_dark_faint [0 ],
508
+ "color17" : pywal_colors_dark_faint [1 ],
509
+ "color18" : pywal_colors_dark_faint [2 ],
510
+ "color19" : pywal_colors_dark_faint [3 ],
511
+ "color20" : pywal_colors_dark_faint [4 ],
512
+ "color21" : pywal_colors_dark_faint [5 ],
513
+ "color22" : pywal_colors_dark_faint [6 ],
514
+ "color23" : pywal_colors_dark_faint [7 ]
455
515
}
456
516
}
457
517
dark_active = colors ['dark' ]['OnBackground' ]
0 commit comments