問題: ターゲットの RGB カラーが与えられた場合、黒の色を変更するにはどうすればよいですか ( #000) を CSS フィルターのみを使用してその色に変換しますか?
解決策: 次の関数を使用して、ターゲット RGB カラーを CSS フィルター文字列に変換します:
<code class="python">def css_filter(target_color): """Converts a target RGB color into a CSS filter string. Args: target_color: A tuple of three integers representing the target RGB color. Returns: A CSS filter string that transforms black into the target color. """ # Convert the target RGB color to HSL. h, s, l = colorsys.rgb_to_hls(*target_color) # Calculate the CSS filter values. invert = 1 - (l / 100) sepia = 1 - s saturate = s / 100 hue_rotate = h * 360 brightness = l contrast = 1 # Return the CSS filter string. return "filter: invert({0}%) sepia({1}%) saturate({2}%) hue-rotate({3}deg) brightness({4}%) contrast({5});".format( invert, sepia, saturate, hue_rotate, brightness, contrast)</code>
以上がCSS フィルターを使用して任意の RGB カラーに合わせて黒を再着色する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。