Steamをインストール
ログイン
|
言語
简体中文(簡体字中国語)
繁體中文(繁体字中国語)
한국어 (韓国語)
ไทย (タイ語)
български (ブルガリア語)
Čeština(チェコ語)
Dansk (デンマーク語)
Deutsch (ドイツ語)
English (英語)
Español - España (スペイン語 - スペイン)
Español - Latinoamérica (スペイン語 - ラテンアメリカ)
Ελληνικά (ギリシャ語)
Français (フランス語)
Italiano (イタリア語)
Bahasa Indonesia(インドネシア語)
Magyar(ハンガリー語)
Nederlands (オランダ語)
Norsk (ノルウェー語)
Polski (ポーランド語)
Português(ポルトガル語-ポルトガル)
Português - Brasil (ポルトガル語 - ブラジル)
Română(ルーマニア語)
Русский (ロシア語)
Suomi (フィンランド語)
Svenska (スウェーデン語)
Türkçe (トルコ語)
Tiếng Việt (ベトナム語)
Українська (ウクライナ語)
翻訳の問題を報告
#rrggbb
rr = red 00-ff (hex)
gg = green 00-ff (hex)
bb = blue 00-ff (hex)
#000000 = black
#ffffff = white
http://www.w3schools.com/tags/ref_colorpicker.asp
#339966 - a dark teal
#6666FF - kind of purple
First 2 sets: 33 and 66
66-33=33
33/2=19 (again, if you think this is wrong and should be 17, check a hex calculator)
33 is lower than 66, so we add the 19 to the 33 and get 4C.
The formula is MIN(set1, set2)+(MAX(set1,set2)-MIN(set1,set2))/2
Second set: 99 and 66
66+(99-66)/2=66+19=7F
Third set: 66 and FF
66+(FF-66)/2=66+4C=B2
So your number would be #4C7FB2, which by looking at it does look like the color halfway between those 2 others.