├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── fab-1.png ├── fab-2.png ├── fab-3.png ├── fab-4.png ├── fab-5.png ├── icons-license.txt ├── icons.ttf ├── roboto-license.txt ├── roboto-light.ttf ├── roboto-medium.ttf ├── roboto-regular.ttf ├── shadow-1.png ├── shadow-2.png ├── shadow-3.png ├── shadow-4.png └── shadow-5.png ├── images ├── broken-lines.png ├── depths.png ├── fabs.png ├── icon1024.png ├── icon128.png ├── icon16.png ├── icon256.png ├── icon32.png ├── icon512.png ├── icon64.png ├── imagetransition.gif ├── logo.png ├── master.gif ├── material-bitch.png ├── nine-patch.png ├── ninepatching.png ├── patching.png ├── ripples.gif ├── scale.png ├── shadows.png └── spinner.gif ├── init.lua └── libs ├── colors.lua ├── drawicons.lua ├── fab.lua ├── icons.lua ├── image.lua ├── patchy.lua ├── ripple.lua ├── roboto.lua ├── roundrect.lua ├── shadow.lua └── spinner.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/README.md -------------------------------------------------------------------------------- /assets/fab-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/fab-1.png -------------------------------------------------------------------------------- /assets/fab-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/fab-2.png -------------------------------------------------------------------------------- /assets/fab-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/fab-3.png -------------------------------------------------------------------------------- /assets/fab-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/fab-4.png -------------------------------------------------------------------------------- /assets/fab-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/fab-5.png -------------------------------------------------------------------------------- /assets/icons-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/icons-license.txt -------------------------------------------------------------------------------- /assets/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/icons.ttf -------------------------------------------------------------------------------- /assets/roboto-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/roboto-license.txt -------------------------------------------------------------------------------- /assets/roboto-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/roboto-light.ttf -------------------------------------------------------------------------------- /assets/roboto-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/roboto-medium.ttf -------------------------------------------------------------------------------- /assets/roboto-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/roboto-regular.ttf -------------------------------------------------------------------------------- /assets/shadow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/shadow-1.png -------------------------------------------------------------------------------- /assets/shadow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/shadow-2.png -------------------------------------------------------------------------------- /assets/shadow-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/shadow-3.png -------------------------------------------------------------------------------- /assets/shadow-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/shadow-4.png -------------------------------------------------------------------------------- /assets/shadow-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/assets/shadow-5.png -------------------------------------------------------------------------------- /images/broken-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/broken-lines.png -------------------------------------------------------------------------------- /images/depths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/depths.png -------------------------------------------------------------------------------- /images/fabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/fabs.png -------------------------------------------------------------------------------- /images/icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/icon1024.png -------------------------------------------------------------------------------- /images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/icon128.png -------------------------------------------------------------------------------- /images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/icon16.png -------------------------------------------------------------------------------- /images/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/icon256.png -------------------------------------------------------------------------------- /images/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/icon32.png -------------------------------------------------------------------------------- /images/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/icon512.png -------------------------------------------------------------------------------- /images/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/icon64.png -------------------------------------------------------------------------------- /images/imagetransition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/imagetransition.gif -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/master.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/master.gif -------------------------------------------------------------------------------- /images/material-bitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/material-bitch.png -------------------------------------------------------------------------------- /images/nine-patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/nine-patch.png -------------------------------------------------------------------------------- /images/ninepatching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/ninepatching.png -------------------------------------------------------------------------------- /images/patching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/patching.png -------------------------------------------------------------------------------- /images/ripples.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/ripples.gif -------------------------------------------------------------------------------- /images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/scale.png -------------------------------------------------------------------------------- /images/shadows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/shadows.png -------------------------------------------------------------------------------- /images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/images/spinner.gif -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/init.lua -------------------------------------------------------------------------------- /libs/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/colors.lua -------------------------------------------------------------------------------- /libs/drawicons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/drawicons.lua -------------------------------------------------------------------------------- /libs/fab.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/fab.lua -------------------------------------------------------------------------------- /libs/icons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/icons.lua -------------------------------------------------------------------------------- /libs/image.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/image.lua -------------------------------------------------------------------------------- /libs/patchy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/patchy.lua -------------------------------------------------------------------------------- /libs/ripple.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/ripple.lua -------------------------------------------------------------------------------- /libs/roboto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/roboto.lua -------------------------------------------------------------------------------- /libs/roundrect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/roundrect.lua -------------------------------------------------------------------------------- /libs/shadow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/shadow.lua -------------------------------------------------------------------------------- /libs/spinner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablomayobre/material-love/HEAD/libs/spinner.lua --------------------------------------------------------------------------------