ayu-dark.ts

 1import { ThemeAppearance, ThemeConfig } from "../../common"
 2import { ayu, meta, build_theme } from "./common"
 3
 4const variant = ayu.dark
 5const { ramps, syntax } = build_theme(variant, false)
 6
 7export const theme: ThemeConfig = {
 8    name: `${meta.name} Dark`,
 9    author: meta.author,
10    appearance: ThemeAppearance.Dark,
11    license_type: meta.license_type,
12    license_url: meta.license_url,
13    license_file: `${__dirname}/LICENSE`,
14    input_color: ramps,
15    override: { syntax },
16}