Skip to content

PUIColor

Elijah Cobb edited this page May 13, 2021 · 3 revisions

A PUIColor is an enum of colors following the OneDark theme of colors.

Colors

enum PUIColor {
	black ="#21252b",
	background ="#282C34",
	red ="#e06c75",
	green ="#98c379",
	yellow ="#e5c07b",
	blue ="#61afef",
	purple ="#c678dd",
	cyan ="#56b6c2",
	white ="#abb2bf",
	gold ="#ffcd00"
}

Usage

import { PUIColor } from "@pstdl/ui";
const myColor = PUIColor.blue;

Clone this wiki locally