b137518d47
This package provides named colors as defined in the SVG 1.1 spec. Named colors are parsed from the SVG 1.1 spec web page at http://www.w3.org/TR/SVG/types.html and written using go generate fixes golang/go#11734 Change-Id: Ia75a166b3714a36a07be64c7d331231b5b2d0cf2 Reviewed-on: https://go-review.googlesource.com/13181 Reviewed-by: Nigel Tao <nigeltao@golang.org>
11 lines
344 B
Go
11 lines
344 B
Go
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:generate go run gen.go
|
|
|
|
// Package colornames provides named colors as defined in the SVG 1.1 spec.
|
|
//
|
|
// See http://www.w3.org/TR/SVG/types.html#ColorKeywords
|
|
package colornames
|