Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1c1e0fe5
Commit
1c1e0fe5
authored
Aug 04, 1997
by
Richard M. Stallman
Browse files
Alternative colors for standard faces if dark background.
parent
338992a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
lisp/faces.el
lisp/faces.el
+11
-3
No files found.
lisp/faces.el
View file @
1c1e0fe5
...
...
@@ -1584,15 +1584,23 @@ examine the brightness for you."
(
underline
"Underline text."
((
t
(
:underline
t
))))
(
default
"Used for text not covered by other faces."
((
t
nil
)))
(
highlight
"Highlight text in some way."
((((
class
color
))
(
:background
"darkseagreen2"
))
((((
class
color
)
(
background
light
))
(
:background
"darkseagreen2"
))
(((
class
color
)
(
background
dark
))
(
:background
"darkolivegreen"
))
(
t
(
:inverse-video
t
))))
(
modeline
"Used for displaying the modeline."
((
t
(
:inverse-video
t
))))
(
region
"Used for displaying the region."
((
t
(
:background
"gray"
))))
((((
class
color
)
(
background
dark
))
(
:background
"blue"
))
(
t
(
:background
"gray"
))))
(
secondary-selection
"Used for displaying the secondary selection."
((((
class
color
))
(
:background
"paleturquoise"
))
((((
class
color
)
(
background
light
))
(
:background
"paleturquoise"
))
(((
class
color
)
(
background
dark
))
(
:background
"darkslateblue"
))
(
t
(
:inverse-video
t
))))))
entry
symbol
doc
spec
)
(
while
all
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment