-
-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong colors in the theme #141
Comments
Well, that is terrifying 😉 First, I’m assuming that you have a pretty up-to-date version of Solarized, which means that there is no longer separate If you do have a fairly current version, you probably have to do one of two things. Either
Really, I should probably switch the default Let me know if that was helpful. |
That's exactly what's happening with me. |
You shouldn’t conditionalize Here’s how I would do what you want: (setq solarized-termcolors 256)
(add-hook 'after-make-frame-functions
(lambda (frame)
(set-frame-parameter frame 'background-mode 'dark))
(enable-theme 'solarized)))
(load-theme 'solarized) Instead of the |
@sellout Without changing something in my config, I have different result today :-/
After, I tried next basic function combination with; like shuffling func order, tried some background assignment, etc. (yes, I'm not an emacs master but I tried logic stuff as I know) (load-theme 'solarized)
(set-background-color "black")
(add-to-list 'default-frame-alist '(background-mode . dark)
(enable-theme 'solarized) You can see theses test here : http://youtu.be/51bkotVNdG8 Strangely, this is the most basic configuration I can use to run emacs gui : (load-theme 'solarized)
(set-background-color "black")
(enable-theme 'solarized) Note : English isn't my first language. |
For your last request,
when I see this : Face: menu (sample) (customize this face)
Documentation:
Basic face for the font and colors of the menu bar and popup menus.
Defined in `faces.el'.
Family: unspecified
Foundry: unspecified
Width: unspecified
Height: unspecified
Weight: unspecified
Slant: unspecified
Foreground: brightyellow
DistantForeground: unspecified
Background: white
Underline: unspecified
Overline: unspecified
Strike-through: unspecified
Box: unspecified
Inverse: unspecified
Stipple: unspecified
Font: unspecified
Fontset: unspecified
Inherit: unspecified My emacs version : GNU Emacs 24.4.1 (x86_64-redhat-linux-gnu, GTK+ Version 3.14.5) of 2014-11-19 on buildvm-03.phx2.fedoraproject.org |
@sellout I just done few test this morning and I don't have theses set of problems with light-theme |
This is my init.d:
What am I doing wrong?
I'm using xterm-256color.
The text was updated successfully, but these errors were encountered: