1. About
2. Quick Start
A library to help you create programs with the selection of colors from wallpapers. Windows only! (Yet)
An example of using Material: Creating a GUI.
import material
color = material.get_popular_color(path)
print(color)
# ---> (r, g, b)
import material
color = material.get_popular_color(material.get_wallpaper_path())
print(color)
# ---> (r, g, b)
import material
color = material.get_popular_colors(material.get_wallpaper_path(), amount = 5)
print(color)
# ---> [[r, g, b], [r, g, b], [r, g, b]]