-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallust-light.toml
80 lines (69 loc) · 4.17 KB
/
wallust-light.toml
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
# wallust 2.9.0-d.*
# -- global space -- #
# values below can be overwritten by command line flags
# How the image is parse, in order to get the colors:
# * full - Read and return the whole image pixels more precision slower
# * resized - Resizes the image before parsing mantaining it s aspect ratio
# * wal - Uses image magick convert to generate the colors like pywal
# * thumb - Faster algo hardcoded to x no ratio respected
# * fastresize - A much faster resize algo that uses SIMD For some reason it fails on
# some images where resized doesn t for this reason it doesn t replace
# but rather it s a new option
# * kmeans - Kmeans is an algo that divides and picks pixels all around the image
# Requires more tweaking and more in depth testing but for the most part
# it just werks
backend = "full"
# Difference between similar colors, used by the colorspace:
# 1 Not perceptible by human eyes.
# 1 - 2 Perceptible through close observation.
# 2 - 10 Perceptible at a glance.
# 11 - 49 Colors are more similar than opposite
# 100 Colors are exact opposite
threshold = 100
# NOTE: All palettes will fill 16 colors (from color0 to color15), 16 color
# variations are the 'ilusion' of more colors by opaquing color1 to color5.
# Use the most prominent colors in a way that makes sense, a scheme:
# * dark - dark colors dark background and light contrast
# * dark16 - Same as dark but uses the colors trick
# * darkcomp - This is a dark variant that changes all colors to it s
# complementary counterpart giving the feeling of a new palette but
# that still makes sense with the image provided
# * darkcomp16 - variation of the dark complementary variant
# * harddark - Same as dark with hard hue colors
# * harddark16 - Harddark with color variation
# * harddarkcomp - complementary colors variation of harddark scheme
# * harddarkcomp16 - complementary colors variation of harddark scheme
# * light - Light bg dark fg
# * light16 - Same as light but uses the color trick
# * lightcomp - complementary colors variation of light
# * lightcomp16 - complementary colors variation of light with the color variation
# * softdark - Variant of softlight uses the lightest colors and a dark background
# could be interpreted as dark inversed
# * softdark16 - softdark with color variation
# * softdarkcomp - complementary variation for softdark
# * softdarkcomp16 - complementary variation for softdark with the color variation
# * softlight - Light with soft pastel colors counterpart of harddark
# * softlight16 - softlight with color variation
# * softlightcomp - softlight with complementary colors
# * softlightcomp16 - softlight with complementary colors with colors
# This field chooses a method to use when the gathered colors aren't enough:
# * interpolation - (default) Tries to pick two colors and built gradients over them
# * complementary - Uses the complementary colors of two colors, or more (if needed), colors.
generation = "Complement"
colorspace = "lab"
# Ensures a "readable contrast" (OPTIONAL, disabled by default)
# Should only be enabled when you notice an unreadable contrast frequently happening
# with your images. The reference color for the contrast is the background color.
# check_contrast = true
# Color saturation, between [1% and 100%] (OPTIONAL, disabled by default)
# usually something higher than 50 increases the saturation and below
# decreases it (on a scheme with strong and vivid colors)
#saturation = 35
# Alpha value for templating, by default 100 (no other use whatsoever)
#alpha = 100
[templates]
gtk4 = { src = "gtk.css.template", dst = "~/.config/gtk-4.0/gtk.css", pywal = true }
gtk3 = { src = "gtk.css.template", dst = "~/.config/gtk-3.0/gtk.css", pywal = true }
colors-json = { template = "pywal", target = "~/.cache/wal/colors.json" }
colors = { template = "walcolors", target = "~/.cache/wal/colors" }
colors-sh = { template = "sh-colors", target = "~/.cache/wal/colors.sh" }