blob: 07c1f20c8400cb71615c4ac9a1e6af0c937b3149 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
(deftheme magit-classic
"Old-style faces of Magit")
(custom-theme-set-faces
'magit-classic
'(magit-header
((t)))
'(magit-section-title
((t
:weight bold
:inherit magit-header)))
'(magit-branch
((t
:weight bold
:inherit magit-header)))
'(magit-diff-file-header
((t
:inherit magit-header)))
'(magit-diff-hunk-header
((t
:slant italic
:inherit magit-header)))
'(magit-diff-add
((((class color) (background light))
:foreground "blue1")
(((class color) (background dark))
:foreground "white")))
'(magit-diff-none
((t)))
'(magit-diff-del
((((class color) (background light))
:foreground "red")
(((class color) (background dark))
:foreground "OrangeRed")))
'(magit-item-highlight
((((class color) (background light))
:background "gray95")
(((class color) (background dark))
:background "dim gray")))
'(magit-item-mark
((((class color) (background light))
:foreground "red")
(((class color) (background dark))
:foreground "orange")))
)
(provide-theme 'magit-classic)
|