├── .gitignore ├── .github └── FUNDING.yml ├── previews ├── mojave-dark-blue.png ├── mojave-dark-gray.png ├── mojave-dark-green.png ├── mojave-dark-pink.png ├── mojave-dark-red.png ├── mojave-light-blue.png ├── mojave-light-gray.png ├── mojave-light-pink.png ├── mojave-light-red.png ├── mojave-dark-orange.png ├── mojave-dark-purple.png ├── mojave-dark-yellow.png ├── mojave-light-green.png ├── mojave-light-orange.png ├── mojave-light-purple.png ├── mojave-light-yellow.png ├── mojave-theme-switcher.gif └── mojave-theme-switcher.png ├── workflows └── Mojave Themes Switcher.alfredworkflow ├── LICENSE ├── themes ├── Mojave Dark - Red.alfredappearance ├── Mojave Dark - Blue.alfredappearance ├── Mojave Dark - Gray.alfredappearance ├── Mojave Dark - Green.alfredappearance ├── Mojave Dark - Orange.alfredappearance ├── Mojave Dark - Pink.alfredappearance ├── Mojave Dark - Purple.alfredappearance ├── Mojave Dark - Yellow.alfredappearance ├── Mojave Light - Blue.alfredappearance ├── Mojave Light - Gray.alfredappearance ├── Mojave Light - Green.alfredappearance ├── Mojave Light - Pink.alfredappearance ├── Mojave Light - Red.alfredappearance ├── Mojave Light - Orange.alfredappearance ├── Mojave Light - Purple.alfredappearance └── Mojave Light - Yellow.alfredappearance └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: alexmartinfr 2 | custom: https://www.paypal.me/alexmartin 3 | -------------------------------------------------------------------------------- /previews/mojave-dark-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-dark-blue.png -------------------------------------------------------------------------------- /previews/mojave-dark-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-dark-gray.png -------------------------------------------------------------------------------- /previews/mojave-dark-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-dark-green.png -------------------------------------------------------------------------------- /previews/mojave-dark-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-dark-pink.png -------------------------------------------------------------------------------- /previews/mojave-dark-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-dark-red.png -------------------------------------------------------------------------------- /previews/mojave-light-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-light-blue.png -------------------------------------------------------------------------------- /previews/mojave-light-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-light-gray.png -------------------------------------------------------------------------------- /previews/mojave-light-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-light-pink.png -------------------------------------------------------------------------------- /previews/mojave-light-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-light-red.png -------------------------------------------------------------------------------- /previews/mojave-dark-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-dark-orange.png -------------------------------------------------------------------------------- /previews/mojave-dark-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-dark-purple.png -------------------------------------------------------------------------------- /previews/mojave-dark-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-dark-yellow.png -------------------------------------------------------------------------------- /previews/mojave-light-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-light-green.png -------------------------------------------------------------------------------- /previews/mojave-light-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-light-orange.png -------------------------------------------------------------------------------- /previews/mojave-light-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-light-purple.png -------------------------------------------------------------------------------- /previews/mojave-light-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-light-yellow.png -------------------------------------------------------------------------------- /previews/mojave-theme-switcher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-theme-switcher.gif -------------------------------------------------------------------------------- /previews/mojave-theme-switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/previews/mojave-theme-switcher.png -------------------------------------------------------------------------------- /workflows/Mojave Themes Switcher.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmartinfr/mojave-alfred-accented-themes/HEAD/workflows/Mojave Themes Switcher.alfredworkflow -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Alex Martin 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /themes/Mojave Dark - Red.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FFFCFCC4", 8 | "font" : "System Light", 9 | "color" : "#989696C4" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFCFCFF", 14 | "font" : "System Light", 15 | "color" : "#FFFCFC6B" 16 | }, 17 | "backgroundSelected" : "#D8383DE5", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FFFCFCFF", 21 | "font" : "System Light", 22 | "color" : "#F2EFEFFF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#FFFFFFF2", 35 | "font" : "System Light", 36 | "color" : "#FFFCFCF2" 37 | }, 38 | "backgroundSelected" : "#8B5758E5" 39 | }, 40 | "window" : { 41 | "color" : "#353232C4", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Dark - Red" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Dark - Blue.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FCFDFFC4", 8 | "font" : "System Light", 9 | "color" : "#969698C4" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FCFDFFFF", 14 | "font" : "System Light", 15 | "color" : "#FCFDFF6B" 16 | }, 17 | "backgroundSelected" : "#0375EFE5", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FCFDFFFF", 21 | "font" : "System Light", 22 | "color" : "#EFF0F2FF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#FCFDFFF2", 35 | "font" : "System Light", 36 | "color" : "#FCFDFFF2" 37 | }, 38 | "backgroundSelected" : "#3F638BE5" 39 | }, 40 | "window" : { 41 | "color" : "#323335C4", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Dark - Blue" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Dark - Gray.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FFFFFFC4", 8 | "font" : "System Light", 9 | "color" : "#989898C4" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFFFFF2", 14 | "font" : "System Light", 15 | "color" : "#FFFFFF6B" 16 | }, 17 | "backgroundSelected" : "#7F7F7FE5", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FFFFFFF2", 21 | "font" : "System Light", 22 | "color" : "#F2F2F2FF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#FFFFFFF2", 35 | "font" : "System Light", 36 | "color" : "#FFFFFFF2" 37 | }, 38 | "backgroundSelected" : "#6A6E71E5" 39 | }, 40 | "window" : { 41 | "color" : "#353535C4", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Dark - Gray" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Dark - Green.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FCFFFCC4", 8 | "font" : "System Light", 9 | "color" : "#969896C4" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FCFFFCFF", 14 | "font" : "System Light", 15 | "color" : "#FCFFFC6B" 16 | }, 17 | "backgroundSelected" : "#61B548E5", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FCFFFCFF", 21 | "font" : "System Light", 22 | "color" : "#EFF2EFFF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#FFFFFFF2", 35 | "font" : "System Light", 36 | "color" : "#FCFFFCF2" 37 | }, 38 | "backgroundSelected" : "#597553E5" 39 | }, 40 | "window" : { 41 | "color" : "#323532C4", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Dark - Green" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Dark - Orange.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FFFDFCC4", 8 | "font" : "System Light", 9 | "color" : "#989696C4" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFDFCFF", 14 | "font" : "System Light", 15 | "color" : "#FFFDFC6B" 16 | }, 17 | "backgroundSelected" : "#EA7C1CE5", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FFFDFCFF", 21 | "font" : "System Light", 22 | "color" : "#F2F0EFFF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#FFFFFFF2", 35 | "font" : "System Light", 36 | "color" : "#FFFDFCF2" 37 | }, 38 | "backgroundSelected" : "#89674AE5" 39 | }, 40 | "window" : { 41 | "color" : "#353332C4", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Dark - Orange" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Dark - Pink.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FFFCFDC4", 8 | "font" : "System Light", 9 | "color" : "#989696C4" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFCFDFF", 14 | "font" : "System Light", 15 | "color" : "#FFFCFD6B" 16 | }, 17 | "backgroundSelected" : "#ED4995E5", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FFFCFDFF", 21 | "font" : "System Light", 22 | "color" : "#F2EFF0FF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#FFFFFFF2", 35 | "font" : "System Light", 36 | "color" : "#FFFCFDF2" 37 | }, 38 | "backgroundSelected" : "#86566DE5" 39 | }, 40 | "window" : { 41 | "color" : "#353233C4", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Dark - Pink" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Dark - Purple.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FEFCFFC4", 8 | "font" : "System Light", 9 | "color" : "#979698C4" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FEFCFFFF", 14 | "font" : "System Light", 15 | "color" : "#FEFCFF6B" 16 | }, 17 | "backgroundSelected" : "#923E93E5", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FEFCFFFF", 21 | "font" : "System Light", 22 | "color" : "#F1EFF2FF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#FFFFFFF2", 35 | "font" : "System Light", 36 | "color" : "#FEFCFFF2" 37 | }, 38 | "backgroundSelected" : "#705670E5" 39 | }, 40 | "window" : { 41 | "color" : "#343235C4", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Dark - Purple" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Dark - Yellow.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FFFEFCC4", 8 | "font" : "System Light", 9 | "color" : "#989796C4" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFDFCFF", 14 | "font" : "System Light", 15 | "color" : "#FFFEFC6B" 16 | }, 17 | "backgroundSelected" : "#E5A724CB", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FFFEFCFF", 21 | "font" : "System Light", 22 | "color" : "#F2F1EFFF" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#FFFFFFF2", 35 | "font" : "System Light", 36 | "color" : "#FFFEFCF2" 37 | }, 38 | "backgroundSelected" : "#8A754AE5" 39 | }, 40 | "window" : { 41 | "color" : "#353432C4", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Dark - Yellow" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Light - Blue.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FEFCFCC4", 8 | "font" : "System Light", 9 | "color" : "#00000033" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FCFDFFFF", 14 | "font" : "System Light", 15 | "color" : "#15202CA8" 16 | }, 17 | "backgroundSelected" : "#007AFFC4", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FBFCFEFF", 21 | "font" : "System Light", 22 | "color" : "#2C1515CC" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#15202CFF", 35 | "font" : "System Light", 36 | "color" : "#15202CFF" 37 | }, 38 | "backgroundSelected" : "#B3D7FFE5" 39 | }, 40 | "window" : { 41 | "color" : "#FCFDFFD6", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Light - Blue" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Light - Gray.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FFFFFFC4", 8 | "font" : "System Light", 9 | "color" : "#00000033" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFFFFFF", 14 | "font" : "System Light", 15 | "color" : "#2C2C2CA8" 16 | }, 17 | "backgroundSelected" : "#989898D6", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FEFEFEFF", 21 | "font" : "System Light", 22 | "color" : "#2B2B2BCC" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#2C2C2CFF", 35 | "font" : "System Light", 36 | "color" : "#2C2C2CFF" 37 | }, 38 | "backgroundSelected" : "#E0E0E0E5" 39 | }, 40 | "window" : { 41 | "color" : "#FFFFFFD6", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Light - Gray" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Light - Green.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FCFEFCC4", 8 | "font" : "System Light", 9 | "color" : "#00000033" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FCFFFCFF", 14 | "font" : "System Light", 15 | "color" : "#1A2C15A8" 16 | }, 17 | "backgroundSelected" : "#61B946CE", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FBFEFBFF", 21 | "font" : "System Light", 22 | "color" : "#1A2C15CC" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#1A2C15FF", 35 | "font" : "System Light", 36 | "color" : "#1A2C15FF" 37 | }, 38 | "backgroundSelected" : "#D0EAC7E5" 39 | }, 40 | "window" : { 41 | "color" : "#FCFFFCD6", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Light - Green" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Light - Pink.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FEFCFCC4", 8 | "font" : "System Light", 9 | "color" : "#00000033" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFCFDFF", 14 | "font" : "System Light", 15 | "color" : "#2C151FA8" 16 | }, 17 | "backgroundSelected" : "#F74597B2", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FEFBFCFF", 21 | "font" : "System Light", 22 | "color" : "#2C151FCC" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#2C151FFF", 35 | "font" : "System Light", 36 | "color" : "#2C151FFF" 37 | }, 38 | "backgroundSelected" : "#FCCAE2E5" 39 | }, 40 | "window" : { 41 | "color" : "#FFFCFDD6", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Light - Pink" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Light - Red.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FEFCFCC4", 8 | "font" : "System Light", 9 | "color" : "#00000033" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFCFCFF", 14 | "font" : "System Light", 15 | "color" : "#2C1516A8" 16 | }, 17 | "backgroundSelected" : "#E0383EC4", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FEFBFBFF", 21 | "font" : "System Light", 22 | "color" : "#2C1516CC" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#2C1516FF", 35 | "font" : "System Light", 36 | "color" : "#2C1516FF" 37 | }, 38 | "backgroundSelected" : "#F5C3C5E5" 39 | }, 40 | "window" : { 41 | "color" : "#FFFCFCD6", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Light - Red" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Light - Orange.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FEFCFCC4", 8 | "font" : "System Light", 9 | "color" : "#00000033" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFDFCFF", 14 | "font" : "System Light", 15 | "color" : "#2C1E15A8" 16 | }, 17 | "backgroundSelected" : "#F6831ACC", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FEFCFBFF", 21 | "font" : "System Light", 22 | "color" : "#2C1E15CC" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#2C1E15FF", 35 | "font" : "System Light", 36 | "color" : "#2C1E15FF" 37 | }, 38 | "backgroundSelected" : "#F1D6BBE5" 39 | }, 40 | "window" : { 41 | "color" : "#FFFDFCD6", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Light - Orange" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Light - Purple.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FDFCFEC4", 8 | "font" : "System Light", 9 | "color" : "#00000033" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FEFCFFFF", 14 | "font" : "System Light", 15 | "color" : "#2B152CA8" 16 | }, 17 | "backgroundSelected" : "#983E9AC4", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FDFBFEFF", 21 | "font" : "System Light", 22 | "color" : "#2B152CCC" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#2B152CFF", 35 | "font" : "System Light", 36 | "color" : "#2B152CFF" 37 | }, 38 | "backgroundSelected" : "#DFC5DFE5" 39 | }, 40 | "window" : { 41 | "color" : "#FEFCFFD6", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Light - Purple" 60 | } 61 | } -------------------------------------------------------------------------------- /themes/Mojave Light - Yellow.alfredappearance: -------------------------------------------------------------------------------- 1 | { 2 | "alfredtheme" : { 3 | "result" : { 4 | "textSpacing" : 5, 5 | "subtext" : { 6 | "size" : 12, 7 | "colorSelected" : "#FEFDFCC4", 8 | "font" : "System Light", 9 | "color" : "#00000033" 10 | }, 11 | "shortcut" : { 12 | "size" : 16, 13 | "colorSelected" : "#FFFDFCFF", 14 | "font" : "System Light", 15 | "color" : "#2C2315A8" 16 | }, 17 | "backgroundSelected" : "#FCB727D6", 18 | "text" : { 19 | "size" : 14, 20 | "colorSelected" : "#FFFDFCFF", 21 | "font" : "System Light", 22 | "color" : "#2C2315CC" 23 | }, 24 | "iconPaddingHorizontal" : 10, 25 | "paddingVertical" : 5, 26 | "iconSize" : 34 27 | }, 28 | "search" : { 29 | "paddingVertical" : 0, 30 | "background" : "#00000000", 31 | "spacing" : 6, 32 | "text" : { 33 | "size" : 28, 34 | "colorSelected" : "#2C2315FF", 35 | "font" : "System Light", 36 | "color" : "#2C2315FF" 37 | }, 38 | "backgroundSelected" : "#F8E7C0D6" 39 | }, 40 | "window" : { 41 | "color" : "#FFFEFCD6", 42 | "paddingHorizontal" : 0, 43 | "width" : 559, 44 | "borderPadding" : 0, 45 | "borderColor" : "#0000007F", 46 | "blur" : 20, 47 | "roundness" : 5, 48 | "paddingVertical" : 6 49 | }, 50 | "credit" : "@AlexMartinFR", 51 | "separator" : { 52 | "color" : "#CBCBCBF3", 53 | "thickness" : 0 54 | }, 55 | "scrollbar" : { 56 | "color" : "#561A72FF", 57 | "thickness" : 0 58 | }, 59 | "name" : "Mojave Light - Yellow" 60 | } 61 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mojave Alfred Accented Themes 2 | 🎩 Collection of Dark & Light Accented Alfred Themes tailored with care for macOS Mojave & Alfred Powerpack users. 3 | 4 | ## Releases 5 | 6 | - 1.2.1 : Fixed the ```theme install``` command. *August 2019* 7 | - 1.2.0 : New ```theme install``` command to easily download the 16 themes at once. *July 2019* 8 | - 1.1.1 : Alfred 4 compatibility. *June 2019* 9 | - 1.0.0 : Initial release. *October 2018* 10 | 11 | ## Installation 12 | 13 | [Download the latest workflow](https://github.com/AlexMartinFR/mojave-alfred-accented-themes/releases/download/v1.2.1/Mojave-Themes-Switcher.alfredworkflow), then use the ```theme install``` command to grab the 16 themes at once! 14 | I personnaly rock the Light Purple one most of the time, and disabled the Hat Logo in Alfred's Preferences. 15 | 16 | *If you want to clean your Alfred themes folder, here are some terminal shortcuts to open the most common Alfred preferences' locations:* 17 | 18 | - ```open ~/Library/Application\ Support/Alfred/Alfred.alfredpreferences/themes``` 19 | - ```open ~/Library/Application\ Support/Alfred\ 3/Alfred.alfredpreferences/themes``` 20 | - ```open ~/Library/Application\ Support/Alfred\ 2/Alfred.alfredpreferences/themes``` 21 | 22 | ## Theme Switcher 23 | 24 | The workflow designed for this theme collection allows you to select your Alfred's theme accent color and switch between Dark & Light modes. Here are the main commands : 25 | - ```theme``` : toggles between Dark & Light Themes on **both macOS and Alfred**. 26 | - ```theme color``` : toggles between the accent color of your choice variant of this set of themes (replace *color* with either *Blue*, *Purple*, *Pink*, *Red*, *Orange*, *Yellow*, *Green*, *Gray*). 27 | 28 |

29 | Mojave Theme Switcher Workflow 30 |

31 | 32 | 33 | 34 | ## Known limitations 35 | 36 | - To preserve your actual accent color when toggling between Dark and Light modes, I use the themes' background color as an identifier for a specific accent. Which means if you modify the colors of the themes, or try to adapt it for another set of themes, you'll have to adapt the "accentColorLookup" table. 37 | - There is currently no macOS API that I know of which features a way to change the system UI's accent color. When Apple adds it, I'll add the feature to toggle everything from this workflow at once, which will make it a breeze to swap colors system wide in one command! 38 | 39 | 40 | ## Previews 41 | 42 | 43 |

44 | Mojave Light - Blue 45 |

46 | 47 |

48 | Mojave Light - Purple 49 |

50 | 51 |

52 | Mojave Light - Pink 53 |

54 | 55 |

56 | Mojave Light - Red 57 |

58 | 59 |

60 | Mojave Light - Orange 61 |

62 | 63 |

64 | Mojave Light - Yellow 65 |

66 | 67 |

68 | Mojave Light - Green 69 |

70 | 71 |

72 | Mojave Light - Gray 73 |

74 | 75 | 76 | 77 | 78 |

79 | Mojave Dark - Blue 80 |

81 | 82 |

83 | Mojave Dark - Purple 84 |

85 | 86 |

87 | Mojave Dark - Pink 88 |

89 | 90 |

91 | Mojave Dark - Red 92 |

93 | 94 |

95 | Mojave Dark - Orange 96 |

97 | 98 |

99 | Mojave Dark - Yellow 100 |

101 | 102 |

103 | Mojave Dark - Green 104 |

105 | 106 |

107 | Mojave Dark - Gray 108 |

109 | 110 | 111 | 112 | ## Inspiration and thanks 113 | 114 | - Thanks to dvldev for his stylish themes, 115 | which inspired me to further embrace macOS Mojave's Accent Colors 🙏 116 | - Thanks also to mermaid for the Theme Switcher workflow inspiration 👌 117 | - Thanks to Mike Barker's suggested fixes, which led to a very quick Alfred 4 compatibility update 👍 118 | --------------------------------------------------------------------------------