ayu-light.ts

 1import { ThemeAppearance, ThemeConfig } from "../../common"
 2import { ayu, meta, buildTheme } from "./common"
 3
 4const variant = ayu.light
 5const { ramps, syntax } = buildTheme(variant, true)
 6
 7export const theme: ThemeConfig = {
 8    name: `${meta.name} Light`,
 9    author: meta.author,
10    appearance: ThemeAppearance.Light,
11    licenseType: meta.licenseType,
12    licenseUrl: meta.licenseUrl,
13    licenseFile: `${__dirname}/LICENSE`,
14    inputColor: ramps,
15    override: { syntax },
16}