• Stars
    star
    697
  • Rank 64,937 (Top 2 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created almost 8 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The ayu color scheme as a color palette

ayu

The colors of @dempfi's beautiful ayu color scheme extracted as a NPM package.

Installation

npm install --save ayu
yarn add ayu

Usage

import { dark, light, mirage } from 'ayu'

dark.common.bg.hex() === '#0f1419'
light.common.fg.hex() === '#828c99'
mirage.syntax.error.hex() === '#ff3333'

dark.common.bg.rgb() === '15, 20, 25'
light.common.fg.rgb() === '97, 103, 108'
mirage.syntax.error.rgb() === '255, 51, 51'

This package includes TypeScript definitions.

Colors