Emacs, zsh, iTerm, tmux, macOSの暗い色設定

Emacs

atom-one-darkのインストール
M-x package install RET atom-one-dark
使っているディスプレイに対してコントラストが足りないので
atom-one-dark-theme.elを変更。

    ("atom-one-dark-fg"       . "#D0D0D0") ;; orig ABB2BF
    ("atom-one-dark-mono-3"   . "#A0A0A0") ;; orig 5C6370

Emacsのtitle barを暗くする方法は無くはなさそうだけど(たとえば
GitHub - railwaycat/homebrew-emacsmacport: Emacs mac port formulae for the Homebrew package manager
先延ばしにする。

zsh

.zshrc

PROMPT='%F{green}%n%f%F{white}@%F{green}%m%f%# '
RPROMPT='%F{green}[%~]%f'
dircolors
DIR 00;33 # yellow
LINK 00;36 # cyan
 # archives or compressed (green)
.tar 00;32
# image formats (magenta)
.jpg 00;35
iTerm

Color presetsのDark backgroundを使用。Backgroundの色を40 44 52に変更。
Preferences -> Appearance -> Themes [Dark]

tmux

ステータスバーの色変更。

set-option -g status-bg black #base02
set-option -g status-fg white #yellow
macOS

System preferences -> General -> Appearance [Use dark menu bar and Dock]

ipython

% ipython --TerminalInteractiveShell.highlighting_style="paraiso-dark"

Color scheme in 5.0 · Issue #9541 · ipython/ipython · GitHub
Terminal IPython options — IPython 6.2.1 documentation