Sublime Forum

What color scheme and theme do you guys use?

#8

I use the default Monokai, but I’ve edited it to make the sidebar dark (matching the rest of the UI), changes which I’ve provided here:

gist.github.com/mlepage/8c9ad03655b6c69ec556

0 Likes

#9

Check out Neon or Made of Code.

0 Likes

#10

Rainbow.

0 Likes

#11

As an aside… I stopped using syntax coloring years ago, as I realized it has zero benefits and a lot of problems.

After reading linusakesson.net/programming … ghlighting you might be tempted to turn off syntax coloring as well :smile: It’s not exactly an extremely well written piece on the subject (there are no well written pieces on the subject, to my knowledge), but it does point out some of the conclusions I’ve reached over the years.

I know, it is completely counter intuitive, but I highly recommend everyone at least trying it and think about how it affects your ability to read and understand code (hint: it’s significantly improved)

I’ve made a “color scheme” for sublime using the monokai background and slightly off-white text (nothing, absolutely nothing, is highlighted). I can read code like never before.

I am all for editors and IDE’s putting syntax and semantic error indicators in the code, though, and I’m teaching sublime about clang analysis output now. Seems to work fine.

0 Likes

#12

[quote=“stikker”]

As an aside… I stopped using syntax coloring years ago, as I realized it has zero benefits and a lot of problems.

After reading linusakesson.net/programming … ghlighting you might be tempted to turn off syntax coloring as well :smile: It’s not exactly an extremely well written piece on the subject (there are no well written pieces on the subject, to my knowledge), but it does point out some of the conclusions I’ve reached over the years.

I know, it is completely counter intuitive, but I highly recommend everyone at least trying it and think about how it affects your ability to read and understand code (hint: it’s significantly improved)

I’ve made a “color scheme” for sublime using the monokai background and slightly off-white text (nothing, absolutely nothing, is highlighted). I can read code like never before.

I am all for editors and IDE’s putting syntax and semantic error indicators in the code, though, and I’m teaching sublime about clang analysis output now. Seems to work fine.[/quote]

I’ve read that post but I don’t really agree with it. To each their own though. I find syntax highlighting extremely helpful.

0 Likes

#13

[quote=“willy1234x1”]

I find syntax highlighting extremely helpful.[/quote]

Which merely means you didn’t actually really try. Old-habbits prison.

0 Likes

#14

I used to write all of my code in Notepad. I did it for years and I’d never go back to it.

0 Likes

#15

What does that have to do with anything? Sublime is great, and even greater without the coloring clown fest.

The fact that you endured Notepad “for years” makes me think your opinion isn’t worth all that much. Thinking is fundamental.

0 Likes

#16

Stikker quit being an asshole for no reason. This is an entirely subjective choice and there is no hard evidence saying that not having syntax highlighting actually helps you.

Also, this comment over on YCombinator brings up a great point for why syntax highlighting can be beneficial.

https://news.ycombinator.com/item?id=3718304

0 Likes

#17

Usually a Solarized theme (but not the ones supplied with ST3, since they’re wrong). From SublimeColors or my own minimal version.

0 Likes

#18

[quote=“stikker”]

What does that have to do with anything? Sublime is great, and even greater without the coloring clown fest.

The fact that you endured Notepad “for years” makes me think your opinion isn’t worth all that much. Thinking is fundamental.[/quote]

Don’t be arsey. I was replying to your comment about not using syntax highlighting.

This was many years ago, when I was first learning to code at 7. I’m now 23. I’ve been using Sublime since 2009, I picked up the net awards for Sublime back in May, so thanks, I know how good Sublime is.

Syntax highlighting has many benefits (at least for me, and I’m sure others).

0 Likes

#19

I used to be young and stupid too and thought syntax highlighting was the best thing ever.

List the benefits you think are there, and I’ll resolutely shoot down each point.

0 Likes

#20

As I said before “at least to me”.

This is why I prefer syntax highlighting - compared to my experiences in not using it.

  • Contextual awareness. Am I currently in a variable? Have I forgotten a brace?

  • Easy identification of token types, variables, functions, control statements.

  • Less to store in memory = less headaches.

0 Likes

#21

How about you folks take it to another thread?

The rest of us are here to check out other people’s colour schemes and themes.

0 Likes

#22

+1 Off topic, bad tone and verging on trolling by @stikker

On the original question
I use a very basic theme I made for myself years back basically replicating the amber CRT screen I lusted after in the 1980s and could not afford (was stuck with a green screen) with syntax highlighting based, again on my own scheme. One day I will clean it up to make it vaguely presentable for public viewing and put it on github but most people who see it make gagging noise so it may be only me it makes happy in all the world and that’s fine with me.

Have just managed to get rid of the sidebar folders using @bilidam’s helpful snippet so much happier to have things clean again on that score.

0 Likes

#23

I have no idea what happened on page 2 so I’m ignoring it.

Anyway, I use a modified version of Freesia’s Kano theme and the Triplet Lite color scheme, both of which I made (and unlike most themes, Freesia’s not a modified Soda). Basically looks like this:

There’s a link to Freesia in my signature and I’m pretty sure Triplet Lite’s included in it, so that’s done.

0 Likes

#24

Hey Nilium I like the narrow font for seeing more. However I used to try to cram more lines of code vertically and horizontally, minimize space between windows, etc. 10-20 years ago. But now (at 42) I find that I am grateful for slightly larger font sizes. Actually what’s best is being able to quickly zoom larger/smaller, I do like that, depending on which sorts of files I’m in.

0 Likes

#25

I’m using Monokai Extended Bright github.com/jonschlinkert/sublim … i-extended
or Perv Orange github.com/FlavourSys/Perv-ColorScheme

0 Likes

#26

I use my own theme Asphalt, among with Afterglow syntaxt for MarkDown files (planning to implement a proprietary .md syntax in future theme’s update).

0 Likes

#27

I rolled my own markdown syntax that I used for a couple years until switching to MarkdownEditing’s Markdown GFM syntax. (I don’t use the whole package, which I find too opinionated; I only use the syntax.) I’ve been meaning to convert it to YAML, which I find easier to work with, clean it up and adjust to support Pandoc features and other niceties that I had built in my previous syntax (but which was missing other things).

Does any of this sound interesting? I’m looking for collaborators to create a decent Markdown syntax, without any additional cruft.

Sorry for the OT post.

0 Likes