Sourced other themes to get information about font faces for packages. I. Installation A. Manual installation 1. Download the `timu-macos-theme.el' file and add it to your `custom-load-path'. 2. In your `~/.emacs.d/init.el' or `~/.emacs': (load-theme 'timu-macos t) B. From Melpa 1. M-x package-instal timu-macos-theme.el . 2. In your `~/.emacs.d/init.el' or `~/.emacs': (load-theme 'timu-macos t) C. With use-package In your `~/.emacs.d/init.el' or `~/.emacs': (use-package timu-macos-theme :ensure t :config (load-theme 'timu-macos t)) II. Configuration A. Dark and light flavour By default the theme is `dark', to setup the `light' flavour: - Change the variable `timu-macos-flavour' in the Customization Interface. M-x customize RET. Then Search for `timu'. or - add the following to your `~/.emacs.d/init.el' or `~/.emacs' (customize-set-variable 'timu-macos-flavour "light") B. Scaling You can now scale some faces (in `org-mode' for now): - `org-document-info' - `org-document-title' - `org-level-1' - `org-level-2' - `org-level-3' More to follow in the future. By default the scaling is turned off. To setup the scaling add the following to your `~/.emacs.d/init.el' or `~/.emacs': 1. Default scaling This will turn on default values of scaling in the theme. (customize-set-variable 'timu-macos-scale-org-document-title t) (customize-set-variable 'timu-macos-scale-org-document-info t) (customize-set-variable 'timu-macos-scale-org-level-1 t) (customize-set-variable 'timu-macos-scale-org-level-2 t) (customize-set-variable 'timu-macos-scale-org-level-3 t) 2. Custom scaling You can choose your own scaling values as well. The following is a somewhat exaggerated example. (customize-set-variable 'timu-macos-scale-org-document-title 1.8) (customize-set-variable 'timu-macos-scale-org-document-info 1.4) (customize-set-variable 'timu-macos-scale-org-level-1 1.8) (customize-set-variable 'timu-macos-scale-org-level-2 1.4) (customize-set-variable 'timu-macos-scale-org-level-3 1.2) C. "Intense" colors for `org-mode' To emphasize some elements in `org-mode'. You can set a variable to make some faces more "intense". By default the intense colors are turned off. To turn this on add the following to your =~/.emacs.d/init.el= or =~/.emacs=: (customize-set-variable 'timu-macos-org-intense-colors t) D. Color contrast for the theme You can set the color contras for the dark flavour of the theme. By default the color contrast is set to `normal'. To set the desired contrast add one of the following to your `~/.emacs.d/init.el' or `~/.emacs': (customize-set-variable 'timu-macos-color-contrast 'normal) (customize-set-variable 'timu-macos-color-contrast 'muted) (customize-set-variable 'timu-macos-color-contrast 'contrasted) E. Border for the `mode-line' You can set a variable to set the border type for the `mode-line'. Either no border, just on the top or all around. By default the border is turned off. For your preferred type add one of the following to your =~/.emacs.d/init.el= or =~/.emacs=: (customize-set-variable 'timu-macos-mode-line-border-type "none") (customize-set-variable 'timu-macos-mode-line-border-type "border") (customize-set-variable 'timu-macos-mode-line-border-type "overline") F. Background color for the `mode-line' You can set a variable to set a background for the `mode-line'. By default the background color for the background turned on. To turn this off add the following to your =~/.emacs.d/init.el= or =~/.emacs=: (customize-set-variable 'timu-macos-mode-line-background nil) III. Utility functions A. Toggle dark and light flavour of the theme M-x timu-macos-toggle-dark-light RET. B. Toggle between intense and non intense colors for `org-mode' M-x timu-macos-toggle-org-colors-intensity RET. C. Toggle between the 3 different colors contrasts M-x timu-macos-toggle-color-contrast RET. D. Toggle between border types for the `mode-line' M-x timu-macos-toggle-mode-line-border RET. E. Toggle between background and no background for the `mode-line' M-x timu-macos-toggle-mode-line-background RET.