@@ -99,47 +99,56 @@ if there is already one that displays the same directory."
99
99
100
100
101
101
(defface git-status-face
102
- '((((class color ) (background light )) (:foreground " purple" )))
102
+ '((((class color ) (background light )) (:foreground " purple" ))
103
+ (((class color ) (background dark )) (:foreground " salmon" )))
103
104
" Git mode face used to highlight added and modified files."
104
105
:group 'git )
105
106
106
107
(defface git-unmerged-face
107
- '((((class color ) (background light )) (:foreground " red" :bold t )))
108
+ '((((class color ) (background light )) (:foreground " red" :bold t ))
109
+ (((class color ) (background dark )) (:foreground " red" :bold t )))
108
110
" Git mode face used to highlight unmerged files."
109
111
:group 'git )
110
112
111
113
(defface git-unknown-face
112
- '((((class color ) (background light )) (:foreground " goldenrod" :bold t )))
114
+ '((((class color ) (background light )) (:foreground " goldenrod" :bold t ))
115
+ (((class color ) (background dark )) (:foreground " goldenrod" :bold t )))
113
116
" Git mode face used to highlight unknown files."
114
117
:group 'git )
115
118
116
119
(defface git-uptodate-face
117
- '((((class color ) (background light )) (:foreground " grey60" )))
120
+ '((((class color ) (background light )) (:foreground " grey60" ))
121
+ (((class color ) (background dark )) (:foreground " grey40" )))
118
122
" Git mode face used to highlight up-to-date files."
119
123
:group 'git )
120
124
121
125
(defface git-ignored-face
122
- '((((class color ) (background light )) (:foreground " grey60" )))
126
+ '((((class color ) (background light )) (:foreground " grey60" ))
127
+ (((class color ) (background dark )) (:foreground " grey40" )))
123
128
" Git mode face used to highlight ignored files."
124
129
:group 'git )
125
130
126
131
(defface git-mark-face
127
- '((((class color ) (background light )) (:foreground " red" :bold t )))
132
+ '((((class color ) (background light )) (:foreground " red" :bold t ))
133
+ (((class color ) (background dark )) (:foreground " tomato" :bold t )))
128
134
" Git mode face used for the file marks."
129
135
:group 'git )
130
136
131
137
(defface git-header-face
132
- '((((class color ) (background light )) (:foreground " blue" )))
138
+ '((((class color ) (background light )) (:foreground " blue" ))
139
+ (((class color ) (background dark )) (:foreground " blue" )))
133
140
" Git mode face used for commit headers."
134
141
:group 'git )
135
142
136
143
(defface git-separator-face
137
- '((((class color ) (background light )) (:foreground " brown" )))
144
+ '((((class color ) (background light )) (:foreground " brown" ))
145
+ (((class color ) (background dark )) (:foreground " brown" )))
138
146
" Git mode face used for commit separator."
139
147
:group 'git )
140
148
141
149
(defface git-permission-face
142
- '((((class color ) (background light )) (:foreground " green" :bold t )))
150
+ '((((class color ) (background light )) (:foreground " green" :bold t ))
151
+ (((class color ) (background dark )) (:foreground " green" :bold t )))
143
152
" Git mode face used for permission changes."
144
153
:group 'git )
145
154
0 commit comments