netatoo / phoenix-theme

Dark & Light custom UI themes with colors variations for Sublime Text 2
890 stars 61 forks source link

Options that don't appear to work in Sublime 3 #30

Closed jrhorn424 closed 3 years ago

jrhorn424 commented 11 years ago

Hi! Great theme. Having a few issues on Sublime 3. The following options no longer appear to work:

    "phoneix_color_blue": true, // or any other color
    "phoenix_color_expanded_folder": true,
    "phoenix_highlight_current_tab": true,

The following do work, quite pleasantly:

    "phoenix_dirty_bottom_bar": true,
    "phoenix_eighties": true,

Thanks for the theme! Hope this is an easy fix.

Menencia commented 11 years ago

This comment helped me : https://github.com/netatoo/phoenix-theme/issues/5#issuecomment-9757510

jrhorn424 commented 11 years ago

Thanks, but I'm not sure how that helps, unless I missed something?

As above, I have "phoenix_color_blue": true in my user settings.

To reiterate, everything works fine with same settings in Sublime Text 2.

daslicht commented 10 years ago

I have these Settings:

{
    "color_scheme": "Packages/Theme - Phoenix/Color Scheme/Phoenix Dark Orange.tmTheme",
    "ignored_packages":
    [
    ],
    "phoenix_color_expanded_folder": true,
    "phoenix_eighties": true,
    "phoenix_highlight_current_tab": true,
    "phoenix_sidebar_tree_large": true,
    "phoenix_solid_current_tab": true
}

But it looks like this: http://i.imgur.com/g2Zmvkq.png

How do I enable the coloured Sidebar and Folders etc, please?

Fatbat commented 9 years ago

^^ You haven't actually enabled the theme.

    "theme": "Phoenix Dark.sublime-theme",
Fatbat commented 9 years ago

No…

"color_scheme": "Packages/Theme - Phoenix/Color Scheme/Phoenix Dark Orange.tmTheme",

"ignored_packages":

is not the theme, it’s the color scheme. A theme is different from a colour scheme. One changes the interface, the tabs, icons, the way the files and folders look, the size of things, whereas the other simply changes the colors of your code. You need to use both and can customize your color scheme separately (for example, I do not use the color schemes that come with Pheonix, I use a modified version of Twilight with Phoenix Dark). So add…

"theme": "Phoenix Dark.sublime-theme",

To your Settings – User file and you should be good to go.

Regards,

Brad

From: daslicht [mailto:notifications@github.com] Sent: 27 March 2015 17:45 To: netatoo/phoenix-theme Cc: Brad Shaw Subject: Re: [phoenix-theme] Options that don't appear to work in Sublime 3 (#30)

Phoenix Dark Orange.tmTheme is not sufficient ?

— Reply to this email directly or view it on GitHub https://github.com/netatoo/phoenix-theme/issues/30#issuecomment-87003501 . https://github.com/notifications/beacon/AAnua2g205XHaveTokrAPfydJT7Gc8kDks5n5YCGgaJpZM4A_bqx.gif

daslicht commented 9 years ago

Thank you !