Skip to content
On this page

rgbToHex

将 RGB 颜色转换成 16 进制颜色

引入方式

ESM

javascript
import { rgbToHex } from "tool-assistant;

示例

javascript
import { rgbToHex } from "tool-assistant";

function _yourFun() {
  let hex = rgbToHex("rgb(255,255,255)");
}

Released under the MIT License.