diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-13T10·30+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-17T10·56+0000 |
commit | 75aa59bac13c4cd8e96947c741556678ba84000e (patch) | |
tree | b4f01424c3a60f047f0b3eebfaee346a5b7bc6ff /configs/shared | |
parent | 88a315eee1046451e0cd67656ef8c960fed1214b (diff) |
Support Solarized Light theme
I'm also making this my default theme for now. I'm growing a bit tired of randomly assigning themes, since my `terminator` theme is not coupled to my Emacs theme.
Diffstat (limited to 'configs/shared')
-rw-r--r-- | configs/shared/.config/terminator/config | 27 | ||||
-rw-r--r-- | configs/shared/.emacs.d/wpc/packages/wpc-ui.el | 2 | ||||
-rw-r--r-- | configs/shared/.emacs.d/wpc/themes.el | 6 | ||||
-rw-r--r-- | configs/shared/.local/share/wallpaper/solarized_light_thinkpad.jpg | bin | 0 -> 761720 bytes |
4 files changed, 11 insertions, 24 deletions
diff --git a/configs/shared/.config/terminator/config b/configs/shared/.config/terminator/config index 9357a7ed29f9..7aa2dd2077bc 100644 --- a/configs/shared/.config/terminator/config +++ b/configs/shared/.config/terminator/config @@ -3,32 +3,13 @@ [keybindings] [profiles] [[default]] - background_color = "#ffffff" + background_color = "#fcf4dc" cursor_shape = ibeam - cursor_color = "#E29B61" + cursor_color = "#536870" font = Input Mono Medium 12 - foreground_color = "#000000" + foreground_color = "#536870" show_titlebar = False scrollbar_position = hidden - palette = "#31213f:#e29b61:#e8c35f:#565b87:#a56785:#20a89e:#3cc2b5:#8de0e1:#629c9d:#e29b61:#e8c35f:#565b87:#a56785:#20a89e:#3cc2b5:#8de0e1" + palette = "#002831:#d11c24:#738a05:#a57706:#2176c7:#c61c6f:#259286:#eae3cb:#001e27:#bd3613:#475b62:#536870:#708284:#5956ba:#819090:#fcf4dc" use_system_font = False - [[Molokai]] - background_color = "#121212" - cursor_shape = ibeam - cursor_color = "#bbbbbb" - font = Input Mono Medium 12 - foreground_color = "#bbbbbb" - show_titlebar = False - scrollbar_position = hidden - palette = "#121212:#fa2573:#98e123:#dfd460:#1080d0:#8700ff:#43a8d0:#bbbbbb:#555555:#f6669d:#b1e05f:#fff26d:#00afff:#af87ff:#51ceff:#ffffff" - use_system_font = False -[layouts] - [[default]] - [[[child1]]] - parent = window0 - type = Terminal - profile = Molokai - [[[window0]]] - parent = "" - type = Window [plugins] diff --git a/configs/shared/.emacs.d/wpc/packages/wpc-ui.el b/configs/shared/.emacs.d/wpc/packages/wpc-ui.el index f1e722da03b8..2cf1aac6fe10 100644 --- a/configs/shared/.emacs.d/wpc/packages/wpc-ui.el +++ b/configs/shared/.emacs.d/wpc/packages/wpc-ui.el @@ -169,7 +169,7 @@ (laptop-battery/display)) ;; Load a theme -(themes/set "Wall-E") +(themes/set "Solarized Light") (provide 'wpc-ui) ;;; wpc-ui.el ends here diff --git a/configs/shared/.emacs.d/wpc/themes.el b/configs/shared/.emacs.d/wpc/themes.el index 4873d1f4ac80..1ea1620c710d 100644 --- a/configs/shared/.emacs.d/wpc/themes.el +++ b/configs/shared/.emacs.d/wpc/themes.el @@ -79,6 +79,12 @@ :wallpaper "geometric_dark_4k.jpg" :colorscheme 'doom-vibrant)) (dotted/new + "Solarized Light" + (make-theme + :font "Input Mono Medium" + :wallpaper "solarized_light_thinkpad.jpg" + :colorscheme 'doom-solarized-light)) + (dotted/new "Lightness" (make-theme :font "Input Mono Medium" diff --git a/configs/shared/.local/share/wallpaper/solarized_light_thinkpad.jpg b/configs/shared/.local/share/wallpaper/solarized_light_thinkpad.jpg new file mode 100644 index 000000000000..01186d832840 --- /dev/null +++ b/configs/shared/.local/share/wallpaper/solarized_light_thinkpad.jpg Binary files differ |