cdanis / urzas-overlay

Overlay for streaming paper MtG games using OBS, backed by Firebase
MIT License
3 stars 3 forks source link

Consistent coloration of lands #23

Open cdanis opened 7 years ago

cdanis commented 7 years ago

"stomping ground was gold background but fetchlands were grey" -- walkingeyerobot, 2017

cdanis commented 7 years ago

it would be cool to add proper gradients

kprevas commented 7 years ago

oh yeah gradients would be dope

7sempra commented 7 years ago

Yeah, so the logic needs to be adjusted. Currently it looks at color identity, which is obviously wrong. The logic is:

Is basic? => Color that basic produces Is land? => Brown Is Multicolored? => Gold Is Artifact? => Silver else => Use the monocolor (or silver for colorless since we don't have a colorless frame)

Also I dunno what you mean about gradients. The piping? We don't show any piping on these names atm.

cdanis commented 7 years ago

http://magiccards.info/scans/en/gtc/247.jpg

it would be super mega dope if Stomping Ground had a R-->G gradient as its background.

7sempra commented 7 years ago

THAT'S THE PIPING I JUST SAID WE DON'T SHOW PIPING ERMAHGERD RAGE RAGE RAGE :tttt:

cdanis commented 7 years ago

i'm saying we should and it should be the background

looks sweet and communicates useful info

7sempra commented 7 years ago

yeah okay fine

cdanis commented 7 years ago

hey 7sempra bro were you gonna work on this?

ghost commented 7 years ago

.bg-land { background: #b1a9a9; background: -moz-linear-gradient(left, #b1a9a9 0%, #c7e1cf 97%); background: -webkit-linear-gradient(left, #b1a9a9 0%,#c7e1cf 97%); background: linear-gradient(to right, #b1a9a9 0%,#c7e1cf 97%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b1a9a9', endColorstr='#c7e1cf',GradientType=1 ); border: 0px solid #000;

screen shot 2017-03-14 at 3 36 41 pm

243