Skip to content

Commit

Permalink
feat: Ensure mode-line faces unchange
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Dec 26, 2023
1 parent 7f51c71 commit 4a0d835
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions vs-dark-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,8 @@
`(font-lock-type-face ((t (:foreground "#38EFCA"))))
`(font-lock-variable-name-face ((t (:foreground "#D2D2D2"))))

`(line-number ((t ( :background "#252525" :foreground "#2B9181"))))
`(line-number-current-line ((t ( :background "#252525"
:foreground ,(if vs-dark-theme-graphic-p
"#2B9181"
"#00FFD5")))))
`(mode-line ((t :box ( :line-width -1 :style released-button))))
`(mode-line-inactive ((t :box ( :line-width -1 :style released-button))))

`(cursor ((t :background "#909090")))
`(hl-line ((t :background ,(if vs-dark-theme-graphic-p "#2E2E2E" "#363636"))))
Expand All @@ -67,6 +64,12 @@

`(highlight ((t :background ,(if vs-dark-theme-graphic-p "#264F78" "#363636"))))

`(line-number ((t ( :background "#252525" :foreground "#2B9181"))))
`(line-number-current-line ((t ( :background "#252525"
:foreground ,(if vs-dark-theme-graphic-p
"#2B9181"
"#00FFD5")))))

`(fill-column-indicator ((t :foreground "#AA4242")))

`(show-paren-match ,(if vs-dark-theme-graphic-p
Expand Down

0 comments on commit 4a0d835

Please sign in to comment.