Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.8 KiB

  1. ;;; smart-mode-line-light-theme.el --- Light theme for smart-mode-line
  2. ;; Copyright (C) 2014 Artur Malabarba <bruce.connor.am@gmail.com>
  3. ;; Author: Artur Malabarba <bruce.connor.am@gmail.com>
  4. ;; URL: http://github.com/Bruce-Connor/smart-mode-line
  5. ;; Separator: -
  6. ;;; License:
  7. ;;
  8. ;; This file is NOT part of GNU Emacs.
  9. ;;
  10. ;; This program is free software; you can redistribute it and/or
  11. ;; modify it under the terms of the GNU General Public License
  12. ;; as published by the Free Software Foundation; either version 2
  13. ;; of the License, or (at your option) any later version.
  14. ;;
  15. ;; This program is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. ;; GNU General Public License for more details.
  19. ;;
  20. ;;; Change Log:
  21. ;; 0.1a - 2014/05/14 - Created File.
  22. ;;; Code:
  23. (deftheme smart-mode-line-light "Light theme for smart-mode-line.")
  24. (custom-theme-set-faces
  25. 'smart-mode-line-light
  26. '(mode-line-buffer-id ((t :inherit sml/filename :foreground nil :background nil)))
  27. '(mode-line-inactive ((t :foreground "grey20" :background "#fdf6e3" :inverse-video nil)))
  28. '(mode-line ((t :foreground "black" :background "grey85" :inverse-video nil)))
  29. '(sml/global ((t :foreground "gray20" :inverse-video nil)))
  30. '(sml/modes ((t :inherit sml/global :foreground "Black")))
  31. '(sml/filename ((t :inherit sml/global :foreground "Blue" :weight bold)))
  32. '(sml/prefix ((t :inherit sml/global :foreground "#5b2507" :weight bold)))
  33. '(sml/read-only ((t :inherit sml/not-modified :foreground "DarkGreen" :weight bold))))
  34. ;;;###autoload
  35. (when load-file-name
  36. (add-to-list 'custom-theme-load-path
  37. (file-name-as-directory (file-name-directory load-file-name))))
  38. (provide-theme 'smart-mode-line-light)
  39. ;;; smart-mode-line-light-theme.el ends here.