Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カラー ピッカーhttp://labs.abeautifulsite.net/jquery-miniColors/を使用して、グレースケール スライダーだけを使用して色の数を制限するにはどうすればよいですか?
グレースケール値に制限するには、RGB モデルは次のようにする必要があります。
x = [0, 255] rgb(x, x, x)
例えば:
.elem { background-color: rgb(122, 122, 122); }
または 16 進数の css # 表記では、値は次のようにする必要があります。
x = [0, 9][a, f] y = [0, 9][a, f] #xyxyxy
.elem { background-color: #e1e1e1; }