├── README.md ├── colorschemes ├── bikes.json ├── coffe-like.json ├── default.json ├── mint.json ├── monokai.json ├── moon.json ├── purple-power.json ├── sea.jpg.json └── vending.json └── samples ├── bikes-sample.png ├── coffe-like-sample.png ├── default-sample.png ├── mint.png ├── monokai-sample.png ├── moon-sample.png ├── purple-power.png ├── sea-sample.png └── vending-sample.png /README.md: -------------------------------------------------------------------------------- 1 | # wpgtk-colorschemes 2 | :earth_americas: A community driven repository to submit and share colorschemes for [wpgtk](https://github.com/deviantfero/wpgtk) 3 | 4 | From this repository you will be able to download and use JSON formatted colorschemes submitted 5 | by other `wpgtk` users, you're free to fork this repository to create your own personal collection 6 | of colorschemes too! 7 | 8 | To submit a new colorscheme, just open a pull request, the colorscheme in question, should have one 9 | of these formats, for simplicity anything other than the 16 primary colors will be ignored when importing 10 | so you can of course include other keys in your colorscheme, but only the `color` or `colors` key will be read: 11 | 12 | ### Exporting Colorschemes 13 | 14 | Remember, you can use `wpgtk` to export your handcrafted colorschemes, do it like this: 15 | 16 | ``` 17 | wpg -o [] 18 | ``` 19 | 20 | If no path is provided, the current directory will be used, 21 | you can also specify a filename in the path, then the exported json will have that name. 22 | 23 | #### terminal.sexy format 24 | 25 | ```json 26 | { 27 | "color": [ 28 | "#272822", 29 | "#f92672", 30 | "#a6e22e", 31 | "#f4bf75", 32 | "#66d9ef", 33 | "#ae81ff", 34 | "#a1efe4", 35 | "#f8f8f2", 36 | "#75715e", 37 | "#f92672", 38 | "#a6e22e", 39 | "#f4bf75", 40 | "#66d9ef", 41 | "#ae81ff", 42 | "#a1efe4", 43 | "#f9f8f5" 44 | ] 45 | } 46 | ``` 47 | 48 | #### pywal format 49 | 50 | ```json 51 | { 52 | "colors": { 53 | "color0": "#211b16", 54 | "color1": "#A86645", 55 | "color2": "#356E53", 56 | "color3": "#BB9951", 57 | "color4": "#897198", 58 | "color5": "#469750", 59 | "color6": "#576055", 60 | "color7": "#95966a", 61 | "color8": "#392e25", 62 | "color9": "#e97f4a", 63 | "color10": "#3a996c", 64 | "color11": "#ffcd57", 65 | "color12": "#b681d6", 66 | "color13": "#4cd25d", 67 | "color14": "#698862", 68 | "color15": "#dadc9b" 69 | } 70 | } 71 | ``` 72 | 73 | ### Colorschemes 74 | 75 | In this section you can checkout the colorschemes this JSON files produce in `wpgtk`, while submitting 76 | the sample is not necessary for submitting a new colorscheme, it would be greatly appreciated, as it gives 77 | other users a preivew of what they're downloading. 78 | 79 | #### default.json 80 | ![default-sample](./samples/default-sample.png) 81 | 82 | #### monokai.json 83 | ![monokai-sample](./samples/monokai-sample.png) 84 | 85 | #### coffe-like.json 86 | ![coffe-like-sample](./samples/coffe-like-sample.png) 87 | 88 | #### bikes.json 89 | ![bikes-sample](./samples/bikes-sample.png) 90 | 91 | #### vending.json 92 | ![vending-sample](./samples/vending-sample.png) 93 | 94 | #### sea.json 95 | ![sea-sample](./samples/sea-sample.png) 96 | 97 | #### moon.json 98 | ![moon-sample](./samples/moon-sample.png) 99 | 100 | #### purple-power.json 101 | ![purple-power-sample](./samples/purple-power.png) 102 | 103 | #### mint.json 104 | ![mint](./samples/mint.png) 105 | -------------------------------------------------------------------------------- /colorschemes/bikes.json: -------------------------------------------------------------------------------- 1 | { 2 | "wallpaper": "/home/fernando/.config/wpg/wallpapers/bikejpn.jpg", 3 | "alpha": "100", 4 | 5 | "special": { 6 | "background": "#171e1e", 7 | "foreground": "#f9ffff", 8 | "cursor": "#c2cbcb" 9 | }, 10 | "colors": { 11 | "color0": "#171e1e", 12 | "color1": "#629062", 13 | "color2": "#2b8c7c", 14 | "color3": "#a09666", 15 | "color4": "#996574", 16 | "color5": "#b4a753", 17 | "color6": "#278da5", 18 | "color7": "#c2cbcb", 19 | "color8": "#283434", 20 | "color9": "#6fca6f", 21 | "color10": "#2bc1a9", 22 | "color11": "#e0ce73", 23 | "color12": "#d7728f", 24 | "color13": "#fbe55a", 25 | "color14": "#25bfe3", 26 | "color15": "#f9ffff" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /colorschemes/coffe-like.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors": { 3 | "color0": "#211b16", 4 | "color1": "#A86645", 5 | "color2": "#356E53", 6 | "color3": "#BB9951", 7 | "color4": "#897198", 8 | "color5": "#469750", 9 | "color6": "#576055", 10 | "color7": "#95966a", 11 | "color8": "#392e25", 12 | "color9": "#e97f4a", 13 | "color10": "#3a996c", 14 | "color11": "#ffcd57", 15 | "color12": "#b681d6", 16 | "color13": "#4cd25d", 17 | "color14": "#698862", 18 | "color15": "#dadc9b" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /colorschemes/default.json: -------------------------------------------------------------------------------- 1 | { 2 | "wallpaper": "/home/fernando/.config/wpg/wallpapers/blurme.png", 3 | "alpha": "100", 4 | 5 | "special": { 6 | "background": "#282a2e", 7 | "foreground": "#deeeff", 8 | "cursor": "#e4dad2" 9 | }, 10 | "colors": { 11 | "color0": "#282a2e", 12 | "color1": "#a54242", 13 | "color2": "#8c9440", 14 | "color3": "#de935f", 15 | "color4": "#5f819d", 16 | "color5": "#85678f", 17 | "color6": "#5e8d87", 18 | "color7": "#a7b3c5", 19 | "color8": "#3a3d43", 20 | "color9": "#e54646", 21 | "color10": "#c1ce45", 22 | "color11": "#ffbb66", 23 | "color12": "#6ba9dc", 24 | "color13": "#b475c9", 25 | "color14": "#6ac6ba", 26 | "color15": "#deeeff" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /colorschemes/mint.json: -------------------------------------------------------------------------------- 1 | { 2 | "wallpaper": "/home/fernando/.config/wpg/wallpapers/greenmarble.png", 3 | "alpha": "100", 4 | 5 | "special": { 6 | "background": "#d9f3e4", 7 | "foreground": "#284330", 8 | "cursor": "#284330" 9 | }, 10 | "colors": { 11 | "color0": "#d9f3e4", 12 | "color1": "#2de0a7", 13 | "color2": "#61beaf", 14 | "color3": "#81b856", 15 | "color4": "#72b3ad", 16 | "color5": "#81db99", 17 | "color6": "#59d3b9", 18 | "color7": "#558f67", 19 | "color8": "#c1d8cb", 20 | "color9": "#08b37d", 21 | "color10": "#2b9d8b", 22 | "color11": "#579824", 23 | "color12": "#36968d", 24 | "color13": "#3cb75d", 25 | "color14": "#24ad90", 26 | "color15": "#284330" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /colorschemes/monokai.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors": { 3 | "color0": "#272822", 4 | "color1": "#f92672", 5 | "color2": "#a6e22e", 6 | "color3": "#f4bf75", 7 | "color4": "#66d9ef", 8 | "color5": "#ae81ff", 9 | "color6": "#a1efe4", 10 | "color7": "#f8f8f2", 11 | "color8": "#3c3d34", 12 | "color9": "#ff1e8e", 13 | "color10": "#ddff2a", 14 | "color11": "#fffc80", 15 | "color12": "#6effff", 16 | "color13": "#db8eff", 17 | "color14": "#b3ffff", 18 | "color15": "#fffffb" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /colorschemes/moon.json: -------------------------------------------------------------------------------- 1 | { 2 | "special": { 3 | "background": "#13191e", 4 | "foreground": "#ffffff", 5 | "cursor": "#ffffff" 6 | }, 7 | "colors": { 8 | "color0": "#13191e", 9 | "color1": "#e2a780", 10 | "color2": "#a1d0b8", 11 | "color3": "#b8d49a", 12 | "color4": "#ae95c7", 13 | "color5": "#d0a3b9", 14 | "color6": "#aebfd1", 15 | "color7": "#c7ccd1", 16 | "color8": "#686f75", 17 | "color9": "#ecc2a9", 18 | "color10": "#badecd", 19 | "color11": "#d1e1c1", 20 | "color12": "#cbb2e3", 21 | "color13": "#e5bed2", 22 | "color14": "#bacbdd", 23 | "color15": "#f3f4f5" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /colorschemes/purple-power.json: -------------------------------------------------------------------------------- 1 | { 2 | "wallpaper": "/home/fernando/.config/wpg/wallpapers/purple.png", 3 | "alpha": "100", 4 | 5 | "special": { 6 | "background": "#2a253e", 7 | "foreground": "#ffffff", 8 | "cursor": "#ffffff" 9 | }, 10 | "colors": { 11 | "color0": "#2a253e", 12 | "color1": "#f84547", 13 | "color2": "#95c76f", 14 | "color3": "#efa16b", 15 | "color4": "#64878f", 16 | "color5": "#b74989", 17 | "color6": "#8485ce", 18 | "color7": "#d8d8d8", 19 | "color8": "#3f375d", 20 | "color9": "#ff4548", 21 | "color10": "#beff7c", 22 | "color11": "#ffcd74", 23 | "color12": "#72b9c9", 24 | "color13": "#fe4eb4", 25 | "color14": "#9597ff", 26 | "color15": "#ffffff" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /colorschemes/sea.jpg.json: -------------------------------------------------------------------------------- 1 | { 2 | "wallpaper": "/home/fernando/.config/wpg/wallpapers/sea.jpg", 3 | "alpha": "100", 4 | 5 | "special": { 6 | "background": "#032c36", 7 | "foreground": "#ffffdc", 8 | "cursor": "#263a47" 9 | }, 10 | "colors": { 11 | "color0": "#032c36", 12 | "color1": "#c1454c", 13 | "color2": "#6da58a", 14 | "color3": "#aa8c55", 15 | "color4": "#4c5a72", 16 | "color5": "#fe5877", 17 | "color6": "#35958f", 18 | "color7": "#f2f1b9", 19 | "color8": "#044b5c", 20 | "color9": "#ff4853", 21 | "color10": "#7be8b4", 22 | "color11": "#edba5d", 23 | "color12": "#5671a0", 24 | "color13": "#ff5c8c", 25 | "color14": "#37cec5", 26 | "color15": "#ffffdc" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /colorschemes/vending.json: -------------------------------------------------------------------------------- 1 | { 2 | "wallpaper": "/home/fernando/.config/wpg/wallpapers/vendingjpn.jpg", 3 | "alpha": "100", 4 | 5 | "special": { 6 | "background": "#1b161c", 7 | "foreground": "#fbfff9", 8 | "cursor": "#c6cdc4" 9 | }, 10 | "colors": { 11 | "color0": "#1b161c", 12 | "color1": "#4697a6", 13 | "color2": "#8C9971", 14 | "color3": "#579f9a", 15 | "color4": "#d1b785", 16 | "color5": "#1A9E6C", 17 | "color6": "#728A6D", 18 | "color7": "#c6cdc4", 19 | "color8": "#302732", 20 | "color9": "#4bcee7", 21 | "color10": "#bcd881", 22 | "color11": "#61ded5", 23 | "color12": "#fff496", 24 | "color13": "#15d98f", 25 | "color14": "#89c37d", 26 | "color15": "#fbfff9" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /samples/bikes-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviantfero/wpgtk-colorschemes/e9b40f72dfd269c3689788c67bf7616eb54e83ee/samples/bikes-sample.png -------------------------------------------------------------------------------- /samples/coffe-like-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviantfero/wpgtk-colorschemes/e9b40f72dfd269c3689788c67bf7616eb54e83ee/samples/coffe-like-sample.png -------------------------------------------------------------------------------- /samples/default-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviantfero/wpgtk-colorschemes/e9b40f72dfd269c3689788c67bf7616eb54e83ee/samples/default-sample.png -------------------------------------------------------------------------------- /samples/mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviantfero/wpgtk-colorschemes/e9b40f72dfd269c3689788c67bf7616eb54e83ee/samples/mint.png -------------------------------------------------------------------------------- /samples/monokai-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviantfero/wpgtk-colorschemes/e9b40f72dfd269c3689788c67bf7616eb54e83ee/samples/monokai-sample.png -------------------------------------------------------------------------------- /samples/moon-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviantfero/wpgtk-colorschemes/e9b40f72dfd269c3689788c67bf7616eb54e83ee/samples/moon-sample.png -------------------------------------------------------------------------------- /samples/purple-power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviantfero/wpgtk-colorschemes/e9b40f72dfd269c3689788c67bf7616eb54e83ee/samples/purple-power.png -------------------------------------------------------------------------------- /samples/sea-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviantfero/wpgtk-colorschemes/e9b40f72dfd269c3689788c67bf7616eb54e83ee/samples/sea-sample.png -------------------------------------------------------------------------------- /samples/vending-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deviantfero/wpgtk-colorschemes/e9b40f72dfd269c3689788c67bf7616eb54e83ee/samples/vending-sample.png --------------------------------------------------------------------------------