Skip to content

Commit

Permalink
Create mode-line customization
Browse files Browse the repository at this point in the history
  • Loading branch information
danrobi11 authored Jun 24, 2021
1 parent de26305 commit 058aa4f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions mode-line customization
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#+TITLE: My First Emacs Defun
#+AUTHOR: Dan
#+EXPORT_FILE_NAME: /home/danrobi/my.first.emacs.defun.html
#+STARTUP: showeverything

* This sets the mode-line customization
#+BEGIN_SRC emacs-lisp
(defun my-violet-config ()
"Violet Mode-Line Config"
(interactive)
(set-face-background #'mode-line-inactive "snow")
(set-face-foreground #'mode-line-inactive "black")
(set-face-background #'mode-line "blue violet")
(set-face-foreground #'mode-line "snow"))
#+END_SRC
-----

0 comments on commit 058aa4f

Please sign in to comment.