let's give geekhack a new look!!!!11111

User avatar
7bit

04 Jul 2012, 18:04

Looks nice, just make the orange more orange (it is a bit too reddish).

I also like the cat.

The text on the key caps should be centered.

User avatar
off

04 Jul 2012, 18:06

harrison wrote:that will change... i've got a work-in-progress that just needs to be documented.
Remember, the pics on the go are required (and basically, cannot be made later on), the text to explain what exactly happened between them can be added at a (way) later date if so inclined. :D

mkawa

04 Jul 2012, 18:06

you and centered cap text 7bit... OFFSET IS OK TOO!!!

User avatar
harrison

04 Jul 2012, 18:13

I'm pretty sure the Info bars are customization by the user, and it's just up to you what is displayed in them by default. I agree though... it's a lot of space, but I'd personally collapse them (which is one of my favorite features of those themes, and why I prefer to start with an existing one)

something super minimal like this might work too:
Minimalistic Theme
Image

mkawa

04 Jul 2012, 18:18

that looks very very slick harrison. lovin' it!

User avatar
off

04 Jul 2012, 18:26

Gotta say, that minimalistic theme looks like a very unpolished version of DT; and not what I'd call minimalistic personally.

User avatar
7bit

04 Jul 2012, 18:46

off wrote:Gotta say, that minimalistic theme looks like a very unpolished version of DT; and not what I'd call minimalistic personally.
Looks pretty much Polish to me!

:-)

User avatar
harrison

04 Jul 2012, 18:48

off wrote:Gotta say, that minimalistic theme looks like a very unpolished version of DT; and not what I'd call minimalistic personally.
i don't disagree... i think we need to make sure there's a visual independence from DT, since the forum layout and design here is quite unique. while i like a clean minimalistic style, themes like that are very hard to design with all the features that GeekHack is going to use, and keep it looking consistent and clean.

User avatar
GH1391401

04 Jul 2012, 19:30

hashbaz wrote:Image
do you care if anyone uses this?

mkawa

04 Jul 2012, 19:42

7bit wrote:
off wrote:Gotta say, that minimalistic theme looks like a very unpolished version of DT; and not what I'd call minimalistic personally.
Looks pretty much Polish to me!

:-)
7bit with the win as usual ;)

User avatar
baldgye

04 Jul 2012, 21:18

mkawa wrote:
Kellybear wrote:My friend helped me draft up a simple color scheme based on the theme used by deskthority. I like the black/orange of geekhack but always thought that the orange was a bit overwhelming. Batcat is not included, I just thought it was cute since it's black/orange too lol.

Image
this is interesting, but it seems a bit flat and dark to me. i was actually thinking we could satisfy the light background people and dark background people at the same time by splitting the middle (ie, base color is middle gray) and having a good amount of contrast (highlights are dark and light). do you think you could play around with a colors a bit to move more in that direction?
I liked that layout, but also didn't like the colours so much, so I had a play with it, and came up with this;

Image

I much prefer lighter themes, but also love the orange so I tried to keep that. Though I think the actual forum shouldn't use the same layout as DT for posts etc I prefer forums with a larger (100x100/120x120) avy's, though I do like that DT dsnt really do sig's, least that I've seen.

one thing I'd also like to point out, is having a small bar at the top, like GH had and not like DT is so much better. There is no need for such a big header and it adds nothing of any value, you also don't want to force people to have to scroll if they are using smaller screens/resolutions just to see the OP in the thread they clicked on.

User avatar
Kellybear

04 Jul 2012, 23:28

Hmm.. I like baldgye's light theme but I think it'd look weird if we tried to combine light and dark together. I'll play around and try to figure something out though :3

User avatar
Charlie_Brown_MX

04 Jul 2012, 23:34

oneproduct wrote:Dark backgrounds are much easier on the eyes than bright ones. It's one of the reasons that terminals are great.
My terminal is black text on a white background, and Mac OS X ships with that colour scheme as well, so I suspect your *opinion* is just that… an opinion.

kalrykh

04 Jul 2012, 23:41

Koralatov, using terminals since 2011...I think you missed the last 40 years where it was predominantly white or green text on a black background.

User avatar
baldgye

04 Jul 2012, 23:47

kalrykh wrote:Koralatov, using terminals since 2011...I think you missed the last 40 years where it was predominantly white or green text on a black background.
personally I think we should use slates for the forums, and to post msg's you'd have to hammer into a slab of slate your msg and then post it via carrier pidgion to the GH server location, where someone would collect it and then nail it on the forum for all the members to see....


I don't know about anyone else, but black background with a brightly coloured txt fucks up my eyes and gives me eye strain when reading decent sized blocks of txt. Which is why I prefer to use shades of grey with dark text.

Ragnorock

05 Jul 2012, 00:12

As far as my input, if we can get a script like DT has where they cycle pictures submitted by the forum that'd be really cool. Its something I really like about DT over GH. Keep the logo, maybe refresh it, but add that sort of banner feature and I think it'd look pretty cool.

I like signatures as long as they're kept small. 300px max cumulative vertical height and not extending the page.

I like the orange and black/dark grey theme we had, but it could use some refreshing. It needs to be dark with white text because that is MUCH easier on the eyes to read all day than white with black text. DT is too bright just like every white forum. Medium grey is exactly that, in the middle, and doesn't provide enough contrast for the text unless the text uses a color. Orange is the only color that seems appropriate but that would look horrible imo. So medium grey and splitting the difference is the worst option to me. I like Kellybear's version with the geekhack from the layout below it.

But yeah, stick with a dark layout please.

Dave out

metafour

05 Jul 2012, 00:23


dox

05 Jul 2012, 00:33

I love Solarized (dark), I use it everywhere!

User avatar
off

05 Jul 2012, 00:33

baldgye wrote:I don't know about anyone else, but black background with a brightly coloured txt fucks up my eyes and gives me eye strain when reading decent sized blocks of txt. Which is why I prefer to use shades of grey with dark text.
I'm from the opposite camp (like Dave up here), DT gives me eyestrain actually. :?

Time to re-plug the emergency solution for all those issues (but it's a hack-job, requires using on every fresh page load):
this
Spoiler:

Code: Select all

javascript:(function(){function%20RGBtoHSL(RGBColor){with(Math){var%20R,G,B;var%20cMax,cMin;var%20sum,diff;var%20Rdelta,Gdelta,Bdelta;var%20H,L,S;R=RGBColor[0];G=RGBColor[1];B=RGBColor[2];cMax=max(max(R,G),B);cMin=min(min(R,G),B);sum=cMax+cMin;diff=cMax-cMin;L=sum/2;if(cMax==cMin){S=0;H=0;}else{if(L<=(1/2))S=diff/sum;else%20S=diff/(2-sum);Rdelta=R/6/diff;Gdelta=G/6/diff;Bdelta=B/6/diff;if(R==cMax)H=Gdelta-Bdelta;else%20if(G==cMax)H=(1/3)+Bdelta-Rdelta;else%20H=(2/3)+Rdelta-Gdelta;if(H<0)H+=1;if(H>1)H-=1;}return[H,S,L];}}function%20getRGBColor(node,prop){var%20rgb=getComputedStyle(node,null).getPropertyValue(prop);var%20r,g,b;if(/rgb\((\d+),\s(\d+),\s(\d+)\)/.exec(rgb)){r=parseInt(RegExp.$1,10);g=parseInt(RegExp.$2,10);b=parseInt(RegExp.$3,10);return[r/255,g/255,b/255];}return%20rgb;}function%20hslToCSS(hsl){return%20"hsl("+Math.round(hsl[0]*360)+",%20"+Math.round(hsl[1]*100)+"%,%20"+Math.round(hsl[2]*100)+"%)";}var%20props=["color","background-color","border-left-color","border-right-color","border-top-color","border-bottom-color"];var%20props2=["color","backgroundColor","borderLeftColor","borderRightColor","borderTopColor","borderBottomColor"];if(typeof%20getRGBColor(document.documentElement,"background-color")=="string")document.documentElement.style.backgroundColor="white";revl(document.documentElement);function%20revl(n){var%20i,x,color,hsl;if(n.nodeType==Node.ELEMENT_NODE){for(i=0;x=n.childNodes[i];++i)revl(x);for(i=0;x=props[i];++i){color=getRGBColor(n,x);if(typeof(color)!="string"){hsl=RGBtoHSL(color);hsl[2]=1-hsl[2];n.style[props2[i]]=hslToCSS(hsl);}}}}})()
invert page colours bookmarklet, not by me, got it from some site at some point.

User avatar
webwit
Wild Duck

05 Jul 2012, 00:41

^ Turns up monitor's brightness and contrast so it causes eye strain. Complains about eye strain. :twisted:

Strangely never this discussion at facebook, google, reddit, cnn, bbc, etc.

Ragnorock

05 Jul 2012, 00:51

webwit wrote:^ Turns up monitor's brightness and contrast so it causes eye strain. Complains about eye strain. :twisted:

Strangely never this discussion at facebook, google, reddit, cnn, bbc, etc.
Of those, reddit is the only one I'm willing to spend more than a few minutes at a time on, and their link fonts are much larger. I also use night mode in RES, so its grey with white text. I recommend it to anyone who spends any significant amount of time on reddit.

On the forum, many of us do a lot of reading for a longer period of time, but obviously this is a matter of personal preference. Sounds like a good thing to do a survey on.

User avatar
Kellybear

05 Jul 2012, 00:56

We had the option of a light theme on geekhack before, with the dark theme as default. Why not just make two themes and if people prefers light, they use the light one?

User avatar
off

05 Jul 2012, 00:57

webwit wrote:^ Turns up monitor's brightness and contrast so it causes eye strain. Complains about eye strain. :twisted:
Strangely never this discussion at facebook, google, reddit, cnn, bbc, etc.
What are those things you mention :?

Oddly enough, fate has it that for this moment in time you are correct, I turned it up during the day as I always do, and haven't bothered putting it back. Normally I adjust both two to three times a day, I need to with this much burning whitespace. :evil:
While with geekhack otoh, could leave brightness/contrast at one setting for ever, always readable; daytime/nighttime, never painful.
*edit: just adjusted both from 35% to 17%, and it's still annoyingly bright.
Realised that I'd already put it back to 35 from 75 during the day, basically voiding what I said before about not having put it back.
*edit 2: put both to 0%, and guess what. Whitespace works on paper, not when staring at quite a few (led) lightbulbs.

User avatar
sth
2 girls 1 cuprubber

05 Jul 2012, 01:12

I think a rep/voting system would be a great addition to the forum. Maybe not a weighted thread system like Reddit, but either rep to the user or negative votes lead to a post being hidden. Would have to work out abuse of a voting system though...

ripster

05 Jul 2012, 01:16

Agreed.

Like mine:

http://i.imgur.com/6Z4Yx.png

mkawa

05 Jul 2012, 01:30

yes, we were arguing about this rep/karma thing earlier. not sure what we'll end up with, but every single imaginable variation seems to have been implemented for SMF, so we'll have something to that effect

User avatar
sth
2 girls 1 cuprubber

05 Jul 2012, 01:32

mkawa wrote:yes, we were arguing about this rep/karma thing earlier. not sure what we'll end up with, but every single imaginable variation seems to have been implemented for SMF, so we'll have something to that effect
upvote/rep

User avatar
Acanthophis

05 Jul 2012, 01:36

ripster wrote:Agreed.

Like mine:

http://i.imgur.com/6Z4Yx.png
I see you don't use Reddit Enhancement Suite yet.
You should.

ripster

05 Jul 2012, 01:39

And I DO,

On my ipad

mkawa

05 Jul 2012, 01:59

sth wrote:
mkawa wrote:yes, we were arguing about this rep/karma thing earlier. not sure what we'll end up with, but every single imaginable variation seems to have been implemented for SMF, so we'll have something to that effect
upvote/rep
don't like up/downvoting. turns into a mess of infographics, memes and other such junk

Post Reply

Return to “Geekhacker refugee camp”