8000 GitHub - dxfom/color: DXF color index mappings.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

dxfom/color

Repository files navigation

DXF Object Model / Color

DXF color index mappings.

Installation

$ npm i @dxfom/color

Usage

const colorIndex = 1 // 0 - 255

import { DXF_COLOR_RGB } from '@dxfom/color/rgb'
console.log(DXF_COLOR_RGB[colorIndex]) // [255, 0, 0]

import { DXF_COLOR_HEX } from '@dxfom/color/hex'
console.log(DXF_COLOR_HEX[colorIndex]) // "#ff0000"

import { DXF_COLOR_HSL } from '@dxfom/color/hsl'
console.log(DXF_COLOR_HSL[colorIndex]) // [0, 100, 50]

Source

https://gohtx.com/acadcolors.php

License

GPL 3.0

About

DXF color index mappings.

Topics

Resources

License

Stars

Watchers

Forks

0