summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2019-11-11 11:02:01 -0700
committerSean Whitton <spwhitton@spwhitton.name>2019-11-13 16:22:03 -0700
commite8b3a37f3035622c94e02595638f1fe3bd4a9ff2 (patch)
tree594e733186b8f4e8ce0c24f6ef16a5ca880e8d8b
parent46f2a758f41eb5dcff7fc5c7a11c8f26b21ac74a (diff)
downloaddotfiles-e8b3a37f3035622c94e02595638f1fe3bd4a9ff2.tar.gz
default light themes for GTK, Emacs, mc and xfce4-terminal
-rw-r--r--.config/gtk-3.0/settings.ini2
-rw-r--r--.config/mc/ini2
-rw-r--r--.config/xfce4/terminal/terminalrc6
-rw-r--r--.emacs.d/init-org.el4
-rw-r--r--.emacs.d/init.el10
5 files changed, 6 insertions, 18 deletions
diff --git a/.config/gtk-3.0/settings.ini b/.config/gtk-3.0/settings.ini
index d18fa50e..7e447047 100644
--- a/.config/gtk-3.0/settings.ini
+++ b/.config/gtk-3.0/settings.ini
@@ -1,3 +1,3 @@
[Settings]
gtk-key-theme-name=Emacs
-gtk-application-prefer-dark-theme=1
+gtk-application-prefer-dark-theme=0
diff --git a/.config/mc/ini b/.config/mc/ini
index 14d7da00..1a0e6306 100644
--- a/.config/mc/ini
+++ b/.config/mc/ini
@@ -81,7 +81,7 @@ editor_filesize_threshold=64M
editor_stop_format_chars=-+*\\,.;:&>
mcview_eof=
ignore_ftp_chattr_errors=true
-skin=modarin256
+skin=sand256
[Layout]
message_visible=0
diff --git a/.config/xfce4/terminal/terminalrc b/.config/xfce4/terminal/terminalrc
index 97bb19eb..70843aef 100644
--- a/.config/xfce4/terminal/terminalrc
+++ b/.config/xfce4/terminal/terminalrc
@@ -1,8 +1,6 @@
[Configuration]
-ColorBackground=#3f3f3f
-ColorForeground=#dcdccc
-ColorCursor=#8f8fafaf9f9f
-ColorPalette=#1E2320;#BC8383;#60b48a;#dfaf8f;#506070;#dc8cc3;#8cd0d3;#dcdccc;#709080;#dca3a3;#c3bf9f;#f0dfaf;#94bff3;#ec93d3;#93e0e3;#ffffff
+ColorBackground=#ffffff
+ColorForeground=#000000
MiscAlwaysShowTabs=FALSE
MiscBell=FALSE
MiscBellUrgent=FALSE
diff --git a/.emacs.d/init-org.el b/.emacs.d/init-org.el
index 86a9a2ee..9ee1647d 100644
--- a/.emacs.d/init-org.el
+++ b/.emacs.d/init-org.el
@@ -179,8 +179,8 @@
'((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d)")
(sequence "WAITING(w@)" "SOMEDAY(s)" "|" "CANCELLED(c)"))
org-todo-keyword-faces
- '(("SOMEDAY" . (:foreground "#94BFF3" :weight bold)) ; zenburn-blue+1
- ("NEXT" . (:foreground "#F0DFAF" :weight bold))) ; zenburn-yellow
+ '(("SOMEDAY" . (:foreground "#0000FF" :weight bold))
+ ("NEXT" . (:foreground "#DD0000" :weight bold)))
;; capture
org-default-notes-file (concat org-directory "/refile.org")
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 3132480d..e1873871 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -202,16 +202,6 @@
(when (fboundp 'blink-cursor-mode)
(blink-cursor-mode 0))
-;;; zenburn
-
-(use-package zenburn-theme
- :if (spw--optional-pkg-available-p "zenburn-theme")
- :init
- (load-theme 'zenburn)
- ;; see description of `frame-background-mode' variable
- (setq frame-background-mode 'dark)
- (mapc 'frame-set-background-mode (frame-list)))
-
;;; On remote hosts in the UTC timezone, assume I'm in Arizona. This
;;; is relevant for using Org-mode. (Hosts in the UK will be in GMT,
;;; not UTC.)