0.2.0 • Published 1 year ago

@dxfom/color v0.2.0

Weekly downloads
6
License
GPL-3.0
Repository
github
Last release
1 year ago

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