Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "dark theme is the best"
-
The typical devRanter
1. Uses dark theme of IDE and devRant app
2. Hates his/her clients
3. Likes Arch based distros
4. Checks his/her ++'s count or notifications after publishing a rant
5. Hates facebook
6. Associate the morning with a cup of coffee
7. Can't do any job when there are no headphones
8. iPhone vs Android? - fuck, they both are good/bad
9. Every time googles git command to remove a local branch
10. The best VCS is git, but I never used any other VCS22 -
There are people in my workplace who ask "why did you set your IDE to dark theme?". How do I convince them that turning off the lights above my cubicle, lowering the screen brightness and having a dark theme is the best thing ever to concentrate?
Not to mention earbuds and a hoodie.
How do I convince them that once you turn to the Dark Side, there's no coming back?6 -
I have gotten so used to code with dark themes (I even made Devrant from standard light to dark theme) that everytime i see someone with a light themed text editor, my eyes cry a bit.6
-
Hey, Unity!
I love you and how your bug system works, but can you polish your errors?
I don't have any experience in programming and I am only a level designer.
I have no idea what this error meant so I begged to my boss crying that this FATAL error popped up.
Then my boss comforted me with pizza and coke.
I just realized that my boss is better than Unity.
I'm sorry, Unity. I was just about to buy the Unity license, but I changed my mind to just use the [personal edition and hack the dark theme by hex edit.
Best regards,
cozyplanes
(* This is a real e-mail sent to Unity Help Center *)8 -
Solarized dark is the best thing that has ever happened the theme-world. I use it starting from terminal to all editors& IDEs.4
-
Sometimes I ask myself why dark theme isn’t the default setting on apps. I mean, light theme WRECKS YOUR EYES!!! How can the common way of designing is to make light theme default or JUST NOT HAVE A DARK THEME!!!!! It’s so unnatural!!!! Anyway...rant dark theme dark theme is the best dark theme is life light theme for light weights baby dark mode8
-
Visual studio code
I usually use IDEs and am in love with everything made by Jetbrains. I am also to lazy to setup dual boot on my pc, so I live with windows 10. After one of the recent downgrades Microsoft distribute, they shipped this lightweight text editor called visual studio code with it.
It lied to me, that it's a good editor for coding C. It even tells me that I can compile and execute the code from inside the editor, similar to vim. I went to the settings and found a dark theme, for the best best feature this "editor"has to offer.
I give it a try by opening a source file with a normal double click. Editor gets focused, but the code is nowhere to be seen. Retrying conforms my, that this piece of shit is literally not able to open files UNLESS you drag and drop them into the editor. HOW FUCKING USELESS IS THAT?
Next I want to compile the program. Guess what, that functionality was not given or at least I could not find it (same goes with the manual)
Even with dark theme it burns my eyes to use this editor. There are almost no useful shortcuts. The functionality is not even comparable to vim. I always thought eclipse was bad, until this shit was installed.
It might work well for other people. Maybe it has functions, that just don't work on my pc, but from what I've seen: visual studio in general and especially that editor feels like Microsoft trying to replace the toolet paper with sandpaper.8 -
Hey guys :)
I'm here today to share what I've been doing for the best part of the last year.
I was confronted with a problem, I wanted to write my notes in markdown, and wanted something that I could use cross-device without having to enrol on a premium subscription. I also wanted dark theme and a different interface than most options out there. Another requirement I had at the time was that I didn't want simply to go to a website, I wanted a 'native' look and feel, and I didn't want a text editor, I wanted a board of notes.
So I've created Mdyna. I still haven't got the cross-device functionality up and running, but it's one of the next items in my bucket list, along with a PWA that can be used in mobile devices.
You can check it out here: https://mdyna.netlify.com/
Any feedback is welcome =)2 -
I have a question about Android dark theme
I've added dark theme support for my application using 2 different themes declared in styles.xml.
On official android developer site:
"In order to support Dark theme, you must set your app's theme (usually found in res/values/styles.xml) to inherit from a DayNight theme"
and this is what I've done. I've also created colors-night.xml to avoid modifying colors that cannot be modified in styles.xml by coding and this works too: when dark mode is activated from device system, colors changes automatically.
At this point, I was wondering which is the best way to implements dark theme: creating 2 different themes, using colors-night (and drawable-night) or a combination of these 2 ways?